摘要: 1:连表的特点 1、链表是一种存储结构,用于存放线性表 2、连表的结点是根据需要调用动态分配内存函数进行分配的,因此链表可随需要伸长缩短 在腰存储的数据个数未知的情况下节省内存。 3、链表的结点在逻辑上是连续的,但是各结点的内存通常是不连续的,因此不能立即被访问到, 只能从头结点开始逐结点访问。2:... 阅读全文
posted @ 2015-06-13 15:52 bksqmy 阅读(189) 评论(0) 推荐(0)
摘要: #include "string.h"#include "ctype.h" #include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK... 阅读全文
posted @ 2015-06-13 15:25 bksqmy 阅读(188) 评论(0) 推荐(0)
摘要: #include "stdafx.h"#include "stdio.h" #include "string.h"#include "ctype.h" #include "stdlib.h" #include "io.h" #include "math.h" #include... 阅读全文
posted @ 2015-06-13 15:18 bksqmy 阅读(247) 评论(0) 推荐(0)
摘要: #include "stdafx.h"#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define... 阅读全文
posted @ 2015-06-13 14:17 bksqmy 阅读(270) 评论(0) 推荐(0)