摘要:
#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
文森博客
阅读(323)
评论(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
文森博客
阅读(1739)
评论(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
文森博客
阅读(20381)
评论(0)
推荐(0)
浙公网安备 33010602011771号