摘要: #include #include #include typedef struct Node{ int data; struct Node *next;}NODE;void Create_List(NODE *L){ int n; NODE *p,*r; r=L; ... 阅读全文
posted @ 2015-04-18 11:13 文森博客 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #include #include #include typedef struct LinkList{ int data; struct LinkList *next;}NODE;NODE* Create_List(){ int n; NODE *p,*r,*L=(NODE*... 阅读全文
posted @ 2015-04-18 10:25 文森博客 阅读(1720) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #define MaxSize 50typedef struct{ int data[MaxSize]; int length;}SqList;void ListInsert(SqList *L,int i,int e){ in... 阅读全文
posted @ 2015-04-18 10:20 文森博客 阅读(20247) 评论(0) 推荐(0) 编辑