但行好事,莫问前程

摘要: 顺序栈/* *author:zylg project:sequence stack * stack 主要是进行先进后出,那就有进栈出栈操作,最主要的功能也就实现这两个 * fuction introduce * displaystack(* head) * ... 阅读全文
posted @ 2018-10-15 14:37 专业路过 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 稀疏矩阵//存放稀疏矩阵的东西#includeusing namespace std;typedef int datatype;#define smax 100typedef struct{ int i, j;//行数,列数 datatype v... 阅读全文
posted @ 2018-10-15 14:34 专业路过 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 队列/* *author:zylg project:sequeue * sequeue 主要是进行先进先出,那就有进队出队操作,最主要的功能也就实现这两个. * 队列的基本原理:rear端进行入队,font进行出队 * 五个基本操作 * setNullSq(... 阅读全文
posted @ 2018-10-15 14:33 专业路过 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 顺序表/* *author:zylg * fuction introduce * displayList* head) * insertList() * deleteList() * reverseList() * deleteSameList() *注意... 阅读全文
posted @ 2018-10-15 14:31 专业路过 阅读(96) 评论(0) 推荐(0) 编辑
摘要: /* *author:zylg project:double link list * fuction introduce * createLinklist() * displayLinklist(linklist* head) * insertLinklis... 阅读全文
posted @ 2018-10-15 14:29 专业路过 阅读(98) 评论(0) 推荐(0) 编辑
摘要: /* *author:zylg project:link list * fuction introduce * createLinklistF() createLinklistB() * displayLinklist(linklist* head) * g... 阅读全文
posted @ 2018-10-15 14:27 专业路过 阅读(113) 评论(0) 推荐(0) 编辑