摘要: /** * @author huihut * @E-mail:huihut@outlook.com * @version 创建时间:2016年9月9日 * 说明:本程序实现了一个顺序栈。 * 功能:有初始化、销毁、判断空、清空、入栈、出栈、取元素的操作。 */ #include "stdio.h" #include "stdlib.h" #include "malloc.h" //5个常量定... 阅读全文
posted @ 2019-04-16 10:07 wpgraceii 阅读(346) 评论(0) 推荐(0) 编辑
摘要: /** * @author huihut * @E-mail:huihut@outlook.com * @version 创建时间:2016年9月9日 * 说明:本程序实现了一个顺序表。 */ #include "stdio.h" #include "stdlib.h" #include "malloc.h" //5个常量定义 #define TRUE 1 #define FALSE 0 #... 阅读全文
posted @ 2019-04-16 10:04 wpgraceii 阅读(314) 评论(0) 推荐(0) 编辑
摘要: #define BLACK 1 #define RED 0 #include using namespace std; class bst { private: struct Node { int value; bool color; Node *leftTree, *rightTree, *parent; Nod... 阅读全文
posted @ 2019-04-16 10:03 wpgraceii 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 大学数学学习书籍(书名前数字无特殊意义) 1. 同济大学高等数学(第7版 徐小湛)书籍和视频 链接:https://pan.baidu.com/s/1cWa6wBn9LBd_9ypor78jMA 提取码:74g1 2. 给讨厌数学的人:数学的奥妙和生活 小室直树 链接:https://pan.bai 阅读全文
posted @ 2019-04-16 09:58 wpgraceii 阅读(350) 评论(0) 推荐(0) 编辑
摘要: /** * @author huihut * @E-mail:huihut@outlook.com * @version 创建时间:2016年9月23日 * 说明:本程序实现了一个具有头结点的单链表。 */ #include "stdio.h" #include "stdlib.h" #include "malloc.h" //5个常量定义 #define TRUE 1 #define FA... 阅读全文
posted @ 2019-04-16 09:52 wpgraceii 阅读(821) 评论(0) 推荐(0) 编辑
摘要: /** * @author huihut * @E-mail:huihut@outlook.com * @version 创建时间:2016年9月18日 * 说明:本程序实现了一个单链表。 */ #include "stdio.h" #include "stdlib.h" #include "malloc.h" //5个常量定义 #define TRUE 1 #define FALSE 0 ... 阅读全文
posted @ 2019-04-16 09:51 wpgraceii 阅读(239) 评论(0) 推荐(0) 编辑
摘要: #include #include #define SUCCESS 1 #define UNSUCCESS 0 #define OVERFLOW -1 #define OK 1 #define ERROR -1 typedef int Status; typedef int KeyType; typedef struct{ KeyType key; }RcdType; typed... 阅读全文
posted @ 2019-04-16 09:50 wpgraceii 阅读(290) 评论(0) 推荐(0) 编辑