admin 2019年06月17日 顺序栈的算法 ### 顺序栈的存储结构 ```C++ #define MaxSize 100 typedef int ElemType; struct SqStack { ElemType data[MaxSize]; int top; 755 0 0 数据结构
admin 2019年06月17日 顺序表的算法 > - typedef int ElemType 表示为int起别叫ElemType. > - typedef int Elemtype[10]相当于:以后用Elemtype声明的变量都是一个int[10]数组. > - 除了retur 748 0 0 数据结构
admin 2019年06月17日 双链表的算法 ### 双链表的存储结构 ```C++ typedef int ElemType; struct DLinkList { ElemType data; struct DLinkList *prior; 699 0 0 数据结构
admin 2019年06月17日 树表的查找 > 1. BST:Binary Sort Tree,二叉排序树 > 2. p=malloc(...)强制类型转换→p=(BSTNode *)malloc(...) ### 二叉排序树的存储结构 ```C++ typedef in 744 0 0 数据结构
admin 2019年06月17日 模式匹配算法 > 1. 前缀常识:Sq→Sequence,指顺序结构, Li→Link,指链接结构 > 2. malloc的用法:struct SqString *p=(SqString *)malloc(sizeof(SqString)); # 718 0 0 数据结构
admin 2019年06月17日 链栈的算法 > p=lst->next这句话的含义是p为指向头结点之后第一个节点的指针。==NULL译为:没有第一个节点。 ### 链栈的存储结构 ```C++ typedef int ElemType; struct LiStack { 682 0 0 数据结构
admin 2019年06月17日 链队的算法 > 1. 链队是一个没有头结点的单链表, 它的front和rear都有具体元素。队空不是front==rear, 而是 > rear==NULL,front==rear可能是只有一个元素。 > 2. 存储结构就是在单链表的基础上加 775 0 0 数据结构
admin 2019年06月17日 归并排序 > Merge 将两个序列归并, MergePass 定义了在每一个长度下对序列怎样分区归并, MergeSort 以递增长度调用 MergePass ### 归并排序算法 ```C++ void Merge(SqList R[ 760 0 0 数据结构
admin 2019年06月17日 二叉树的基本算法 ### 二叉树的存储结构 ```C++ #define MaxSize 100 typedef char ElemType; struct BTNode { ElemType data; struct BTNode *lch 734 0 0 数据结构
admin 2019年06月17日 二叉树的遍历算法 > while(队列非空){出队;入队} ### 二叉树的存储结构 ```C++ #define MaxSize 100 typedef char ElemType; struct BTNode { ElemType da 714 0 0 数据结构
admin 2019年06月17日 单链表的算法 ### 单链表的存储结构 ```C++ typedef int ElemType; struct LinkList { ElemType data; struct LinkList *next; }; `` 699 0 0 数据结构
admin 2019年06月17日 插入排序 ### 顺序表的存储结构 ```C++ #define MAXITEM 100 typedef int KeyType; typedef char ElemType[10]; struct SqList { KeyType k 760 0 0 数据结构
admin 2019年06月15日 《新概念英语4》第60讲 # abstract 1. 讲解词汇与搭配:contrary to ... far from (being) + n./adj. far from doing manoeuvre maneu 764 0 0 英语
admin 2019年06月15日 《新概念英语4》第59讲 # abstract 1. 讲解词汇:command greatify satiation majority favor/favour enfore vocation 825 0 0 英语
admin 2019年06月15日 《新概念英语4》第58讲 # abstract 1. 讲解词汇:cultivation cultivate policy alternative relief broadly toil tri 810 0 0 英语
admin 2019年06月15日 《新概念英语4》第57讲 # abstract 1. 讲解词汇:intelligent unintelligible proposition attend recuperation 2. 讲解搭配:by defin 827 0 0 英语
admin 2019年06月15日 《新概念英语4》第56讲 # abstract 1. 讲解词汇与搭配:commonplace evolve aberrant predominant manifest pristine the wor 863 0 0 英语
admin 2019年06月15日 《新概念英语4》第55讲 # abstract 1. 讲解词汇:narcissus interminably winkle lowbrow incidentally unforgivable bore 848 0 0 英语
admin 2019年06月15日 《新概念英语4》第54讲 # abstract 1. 讲解词汇:radicial fundamental destiny organic extraordinary fascination self- 780 0 0 英语