01 2016 档案

摘要:源代码: 1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 5 #define Score_Num 35 6 7 struct Standard 8 { 9 int A; 10 int B; 11 int C; 12 阅读全文
posted @ 2016-01-11 20:01 指间ゝ繁华初逝的格调 阅读(627) 评论(0) 推荐(0)
摘要:1 #include "stdio.h" 2 #include "stdlib.h" 3 #include "malloc.h" 4 #include "string.h" 5 6 const int maxlen=1000;//最大长度 7 typedef char type; 8 9 struc 阅读全文
posted @ 2016-01-11 10:36 指间ゝ繁华初逝的格调 阅读(166) 评论(0) 推荐(0)
摘要:1 #include "stdio.h"/*头文件*/ 2 #include "string.h" 3 #include "stdlib.h" 4 #define LEN sizeof(struct student)/*宏定义*/ 5 int n = 0;/*n为静态全局变量,本文件模块中各函数均可 阅读全文
posted @ 2016-01-08 09:19 指间ゝ繁华初逝的格调 阅读(148) 评论(0) 推荐(0)
摘要:1 #include <stdio.h> 2 #include <time.h> 3 #include <stdlib.h> 4 5 #define MAXN 150 //最大节点数 6 #define INF ((1<<31)-1) //无穷大数 7 8 int dist[MAXN][MAXN]; 阅读全文
posted @ 2016-01-04 01:45 指间ゝ繁华初逝的格调 阅读(288) 评论(0) 推荐(0)
摘要:1 #include<iostream> 2 #include<fstream> 3 #include<string> 4 using namespace std; 5 #define maxlen 100 6 7 //---------------------------------基类----- 阅读全文
posted @ 2016-01-01 23:36 指间ゝ繁华初逝的格调 阅读(243) 评论(0) 推荐(0)
摘要:1 #include "stdio.h" 2 #include "stdlib.h" 3 #include "malloc.h" 4 5 const int maxlen=1000;//线性表的最大长度 6 typedef char type; 7 8 struct Data{ 9 char nam 阅读全文
posted @ 2016-01-01 11:26 指间ゝ繁华初逝的格调 阅读(166) 评论(0) 推荐(0)