摘要: #include<stdio.h>#include<malloc.h>#include<stdlib.h> typedef struct Node{ int data; struct Node * pNext;}NODE,*PNODE; typedef struct Stack{ PNODE pTo 阅读全文
posted @ 2019-10-13 15:36 包莹莹 阅读(650) 评论(0) 推荐(0) 编辑
摘要: /* 时间:2019年10月13日11:16:02 说明:链表的一些常用操作*/#include<stdio.h>#include<malloc.h>#include<stdlib.h> typedef struct Node{ int data; //数据域 struct Node* pNext; 阅读全文
posted @ 2019-10-13 11:17 包莹莹 阅读(241) 评论(0) 推荐(0) 编辑