摘要: #include<stdio.h>#include<assert.h>#include<malloc.h> #define ElemType int typedef struct Node{ ElemType data; struct Node *next;}Note,*PNode; typedef 阅读全文
posted @ 2019-04-22 16:26 18软件工程五班陈星星 阅读(256) 评论(0) 推荐(0) 编辑