摘要: #include #inlcude #include typedef struct node { int data; strutc node * pNext; }Node,*pNode; //函数说明 pNOde CreatList(); int AddList(); int DelList(); int TraveList(); int LoopList(); ... 阅读全文
posted @ 2017-05-15 21:07 sheldon_lee 阅读(179) 评论(0) 推荐(0) 编辑