上一页 1 ··· 4 5 6 7 8
摘要: #include "stdio.h"#include "stdlib.h"#include "math.h"#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status;typedef int QEl... 阅读全文
posted @ 2015-07-07 11:56 Lucas_1993 阅读(227) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#include "stdlib.h"#include "math.h"#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status;typedef int QEle... 阅读全文
posted @ 2015-07-07 11:55 Lucas_1993 阅读(146) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#include "stdlib.h"#include "math.h"#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status;typedef int SElemTyp... 阅读全文
posted @ 2015-07-07 11:54 Lucas_1993 阅读(184) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#include "stdlib.h"#include "math.h"#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status;typedef int SElemTyp... 阅读全文
posted @ 2015-07-07 11:52 Lucas_1993 阅读(199) 评论(0) 推荐(0) 编辑
摘要: to be done来自为知笔记(Wiz) 阅读全文
posted @ 2015-07-07 11:51 Lucas_1993 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 、#include "stdio.h"#include "stdlib.h"typedef struct List { int data; //数据域 struct List *next; //指针域} List;void TailCreatList(List *L) //尾插法建立链表{ List *s, *r;//s用来指向新生成的节点。r始终指向L的终端节点。 r = L; //r指向了头节... 阅读全文
posted @ 2015-07-07 11:50 Lucas_1993 阅读(13437) 评论(0) 推荐(0) 编辑
摘要: to be done来自为知笔记(Wiz) 阅读全文
posted @ 2015-07-07 11:49 Lucas_1993 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #include "string.h"#include "ctype.h"#include "stdio.h"#include "stdlib.h"#include "math.h"#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 1000 /* 存储空间初始分配量 */... 阅读全文
posted @ 2015-07-07 11:48 Lucas_1993 阅读(431) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#include "string.h"#include "ctype.h"#include "stdlib.h"#include "math.h"#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 ... 阅读全文
posted @ 2015-07-07 11:43 Lucas_1993 阅读(225) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#include#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 //存储空间初始分配量typedef int Status; //函数的类型typedef int ElemType;//顺序表中元素的类型typedef struct { //顺序... 阅读全文
posted @ 2015-07-07 11:40 Lucas_1993 阅读(327) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8