Randall's Blog

Randall's Blog

数据结构

数据结构——树与二叉树

头文件TreeAndBinaryTree.h // TreeAndBinaryTree.h - 树与二叉树 #include <iostream> #define MAX_TREE_SIZE 100 /***********************************************
0
0
2022-03-03

数据结构——串

头文件SString.h // SString.h - 串 #include <iostream> #define MAXLEN 255 /******************************************************************************
0
0
2022-02-19

数据结构——栈和队列

头文件StackAndQueue.h // StackAndQueue.h - 栈和队列 #include <iostream> #define SqStackMaxSize 10 // 定义静态链表的最大长度 #define SqQueueMaxSize 10 // 定义顺序队列的最大长度
0
0
2022-02-15

数据结构——线性表

头文件LinearList.h // LinearList.h - 线性表 #include <iostream> #include <stdlib.h> #define MAXSIZE 10 // 定义静态链表的最大长度 #define SqListMaxSize 10 #define SqL
0
0
2022-02-13