- 博客(16)
- 收藏
- 关注
转载 成绩文件排序
#include#include#includeusing namespace std;#define SIZE 10struct E{ char name[101]; int score; }buf[SIZE];void save(){ FILE*fp; int i; if((fp=fopen("stu.txt","wb"
2014-09-09 11:34:19 347
转载 汇编语言
编译器就是将“高级语言”翻译为“机器语言(低级语言)”的程序。请将下述各阶段名词连接构成一个编译器的工作流程。源代码 (source code)、编译器 (compiler)、可执行程序 (executables)、预处理器 (preprocessor)、目标代码 (object code)、链接器 (Linker)、汇编程序 (assembler)。 答:源代码 (source code)
2014-09-09 10:53:17 285
转载 计算机网络
在一个CSMA/CD局域网中,速率为10Mbps,节点最大距离为2公里,信号在媒体中的传播速度为216m/us。在仅考虑传播时延和发送时延情况下,求该网的最短帧长。 答:信号传播时延(μs)= 两站点间的距离(m)÷信号传播速度(200m/μs),并且:数据传输时延 (s)=数据帧长度(bit)÷数据传输速率(bps)。所以:CSMA/CD总线网中最短帧长的计算公式为: 最短数据帧长
2014-09-09 10:52:09 738
转载 成绩排序
#include#include#includeusing namespace std;struct E{ char name[10]; int score;}buf[1000];bool cmp(E a,E b){ if(a.score!=b.score){ return a.score>b.score;}}int mai
2014-09-09 10:27:59 263
转载 数据结构赫夫曼编码
#include #include #include #include typedef struct{ unsigned int weight; unsigned int parent,lchild,rchild;}htnode,*huffmantree; typedef char **huffmancode;int min1(huf
2014-09-09 09:40:17 319
转载 sort排序
#include#include//因为我们将要在程序中使用sort库函数,在头文件方面包含了algorithm头文件,并使用using namespacestd;语句声明了我们将会使用标准命名空间,(sort被定义在其中)using namespace std;bool cmp(int x,int y)//定义排序规则{ return x>y;}int main()
2014-09-09 09:38:31 273
转载 有序线性表合并的算法
void MergeList(List La,List Lb,List &Lc) { InitList(Lc); La_len=ListLength(La) ; Lb_len=ListLength(Lb); while((i { GetElem(La,i,ai);GetElem(Lb,j,bj);
2014-09-09 09:37:25 703
转载 数据结构冒泡排序
#includeint main(){ int n; int i,j; int buf[100]; while(scanf("%d",&n)!=EOF) { for(i=0;i { scanf("%d",&buf[i]); } for(i=0;i { for(j=0;j
2014-09-09 09:37:23 267
转载 文件最近替换算法
#include #include using namespace std;void main(void){deque d;coutint n;while(cin>>n){if(d.size()==0)//里面没有元素,直接插入{d.push_front(n);cout}else if(d.size()==1)//里面已经有了一个元素
2014-09-09 09:35:36 383
转载 文件加法操作
#include int main(void) { freopen("A.txt", "r", stdin ); freopen("B.txt", "w", stdout ); int a, b; scanf("%d%d", &a, &b); printf("%d\n", a + b); return 0; }
2014-09-09 09:34:31 393
转载 文件替换
#include #include using namespace std;int main(){deque d;printf("input:");int n;while(scanf("%d",&n)!=EOF){if(d.size()==0)//里面没有元素,直接插入{d.push_front(n);printf("output:%d\n",d
2014-09-09 09:34:12 384
转载 数据结构链表结点
#include #include #define length k typedef int ListData;struct node { node *link ListData k; }; int Build(node *first) { first -> link == N
2014-09-09 09:31:06 498
转载 数据库聚集函数
聚集函数:SELECT COUNT(*)FROM SCWHERE Cno=’CS302’;SELECT MIN(Grade),AVG(Grade),MAX(Grade)FROM SCWHERE Cno=’CS302’;SELECT Sno,AVG(Grade)FROM SCGROUP BY Sno;SELECT Sno,AVG(Grade)GR
2014-09-09 09:30:24 582
转载 数据库分组查询
SELECT Cname ,GradeFROM SC,CoursesWHERE SC.Cno=Courses.Cno AND Sno=’2011247’;SELECT Students.Sno,GradeFROM SC,StudentsWHERE Students.Sno=SC.Sno AND Cno=’CS202’AND Grade>90;SELECT Stud
2014-09-09 09:29:39 581
转载 数据库数据更新
数据更新:INSERT INTO STUDENTS(SNO,SNAME,SEX,BIRTHDAY,ENROLLYEAR,SPECIALITY,DNO)VALUES(‘200616010’,‘司马相如’,‘男’,’1985-01-28’,‘2006’,‘计算机数学’,‘math‘);INSERT INTO SC(SNO,CNO)VALUES(‘200616’,’MA302’)
2014-09-09 09:29:09 304
转载 数据库建表
建表CREATE TABLE STAB(SNO CHAR(7) PRIMARY KEY,SNAME CHAR(10) NOT NULL,SSX CHAR(20),SWT SMALLINT);CREATE TABLE Departments(DNO CHAR(4) PRIMARY KEY,DNAME CHAR(10),DHEADNO CHA
2014-09-09 09:24:57 478
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人