随笔分类 -  ACM_何玉婷

摘要:#includetypedef int A;typedef struct LNode{ A data; struct LNode *next;}LNode,*LinkList;void CreateList(LinkList &L,A a[],int n){ int i; L=NULL; for(i... 阅读全文
posted @ 2014-07-27 09:42 NYNU_ACM 阅读(288) 评论(0) 推荐(0)
摘要:#includetypedef int A;const int LIST_INIT_SIZE=100;const int LISTINCRMENT=10;typedef struct{ A *elem; int Length; int Listsize; int incrementsize;}Lis... 阅读全文
posted @ 2014-07-27 09:40 NYNU_ACM 阅读(333) 评论(0) 推荐(0)
摘要:#includetypedef int A;const int LIST_INIT_SIZE=100;const int LISTINCRMENT=10;typedef struct{ A *elem; int Length; int Listsize; int incrementsize;}Lis... 阅读全文
posted @ 2014-07-27 09:36 NYNU_ACM 阅读(293) 评论(0) 推荐(0)