上一页 1 ··· 17 18 19 20 21
  2020年3月30日
摘要: 链式队列是一种特殊的链表,只能在尾部添加,在头部删除,类似于排队问题,先入先出 代码如下 #include#include#inc... 阅读全文
posted @ 2020-03-30 21:33 凸凸大军的一员 阅读(591) 评论(0) 推荐(0) 编辑
  2020年3月29日
摘要: #include#include#define MAXSZIE 100typedef int ElemType;typedef st... 阅读全文
posted @ 2020-03-29 16:07 凸凸大军的一员 阅读(48) 评论(0) 推荐(0) 编辑
  2020年3月28日
摘要: 在c/c++里面有值传递与引用传递,假如一个int a=5的代码,我的理解值传递是:当你调用函数时,相当于在栈中拷贝一份同样的int... 阅读全文
posted @ 2020-03-28 18:38 凸凸大军的一员 阅读(109) 评论(0) 推荐(0) 编辑
摘要: //初始化 Node*InitList(){ Node*head=(Node*)malloc(sizeof(Node)); head... 阅读全文
posted @ 2020-03-28 17:55 凸凸大军的一员 阅读(56) 评论(0) 推荐(0) 编辑
  2020年3月27日
摘要: //初始化 Node*InitList(){ Node*head=(Node*)malloc(sizeof(Node)); head... 阅读全文
posted @ 2020-03-27 21:54 凸凸大军的一员 阅读(68) 评论(0) 推荐(0) 编辑
摘要: //初始化 Node*InitList(){ Node*head=(Node*)malloc(sizeof(Node)); if(N... 阅读全文
posted @ 2020-03-27 20:31 凸凸大军的一员 阅读(114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21