2019年12月22日

关于链表的功能(排序,添加,删除,判断长度,判断是否为空,遍历)

摘要: #include <stdio.h> #include <malloc.h> #include <stdlib.h> typedef struct node { int data//数据域 struct node * pnext;//指针域 }node,*pnode;(分号不能少)//node等价于 阅读全文

posted @ 2019-12-22 19:32 不冒泡的苏打水 阅读(321) 评论(0) 推荐(0) 编辑

导航