摘要: #include <stdio.h>#include <malloc.h>#include <stdlib.h>#include "listtest.h" UINT32 CreatList(NodeList *L){ NodeList *p =NULL; NodeList *temp =L; if 阅读全文
posted @ 2017-02-19 14:44 cheshulin 阅读(267) 评论(0) 推荐(0) 编辑
摘要: #define ElemType int #define OK 0 #define ERROR 1 #define UINT32 unsigned int typedef struct Node { ElemType Value; struct Node *pNodeNext; }NodeList; /*************************************... 阅读全文
posted @ 2017-02-19 14:42 cheshulin 阅读(152) 评论(0) 推荐(0) 编辑