赞
踩
所谓高级数据结构,哪里是一篇CSDN博文能够讲完的呢?不过依据信息论编码课程的一些应用,加上我们课程学习的知识,以下总结了一些非计算机专业的同学时常会用到并且意义非凡的数据结构&算法,详细内容分为并查集、优先队列、B-树、B+树、红黑树几个部分。这几种进阶数据结构在之前的文章中也初有涉及。
一、并查集:
1、定义:
并查集(Disjoint-Set)是一种可以动态维护若干个不重叠的集合,并支持合并与查询两种操作的一种数据结构。
2、操作:
合并(Union/Merge):合并两个集合。
查询(Find/Get):查询元素所属集合。
实际操作时,我们会使用一个点来代表整个集合,即一个元素的根结点(可以理解为父亲)。
3、算法描述:
我们建立一个数组fa[ ]
或pre[ ]
表示一个并查集,fa[i]
表示i
的父节点。
初始化:每一个点都是一个集合,因此自己的父节点就是自己fa[i]=i
查询:每一个节点不断寻找自己的父节点,若此时自己的父节点就是自己,那么该点为集合的根结点,返回该点。
修改:合并两个集合只需要合并两个集合的根结点,即fa[RootA]=RootB
,其中RootA
,RootB
是两个元素的根结点。
路径压缩:
实际上,我们在查询过程中只关心根结点是什么,并不关心这棵树的形态(有一些题除外)。因此我们可以在查询操作的时候将访问过的每个点都指向树根,这样的方法叫做路径压缩,单次操作复杂度为O(logN)O(logN)。
结合下图食用更好(图为状态压缩的过程):
4、特点附录:
并查集在Java的程序设计里面用的其实比C更多,它的使用范围可以参考以下问题(总结来源于@super_chris):
①问题的开始 所有元素之间是没有关系的
②随着问题的进行 元素之间不断地集合在一起,变成新的集合
二、优先队列(堆):
1、定义:
普通的队列是一种先进先出的数据结构,元素在队列尾追加,而从队列头删除。在优先队列中,元素被赋予优先级。当访问元素时,具有最高优先级的元素最先删除。优先队列具有最高级先出 (first in, largest out)的行为特征。通常采用堆数据结构来实现。
2、操作:
优先队列是0个或多个元素的集合,每个元素都有一个优先权或值,对优先队列执行的操作有1) 查找;2) 插入一个新元素;3) 删除.在最小优先队列(min priority queue)中,查找操作用来搜索优先权最小的元素,删除操作用来删除该元素;对于最大优先队列(max priority queue),查找操作用来搜索优先权最大的元素,删除操作用来删除该元素.优先权队列中的元素可以有相同的优先权,查找与删除操作可根据任意优先权进行。
优先级队列必须至少支持以下操作:
is_empty:检查队列是否没有元素。
insert_with_priority:使用关联的优先级向队列添加元素。
pull_highest_priority_element:从队列中删除具有最高优先级的元素,并将其返回。
这也称为“pop_element(Off)”,“get_maximum_element”或“get_front(most)_element”。
一些约定颠倒了优先级的顺序,将较低的值视为较高的优先级,因此这也可称为“get_minimum_element”,并且在文献中通常称为“get-min”。
这可以替代地被指定为单独的“peek_at_highest_priority_element”和“delete_element”函数,其可以被组合以产生“pull_highest_priority_element” [1] 。
此外,peek(在此上下文中通常称为find-max或find-min)返回最高优先级元素但不修改队列,它经常被实现,并且几乎总是在O(1)时间内执行。此操作及其O(1)性能对于许多优先级队列应用程序至关重要。
更高级的实现可能支持更复杂的操作,例如pull_lowest_priority_element,检查前几个最高或最低优先级元素,清除队列,清除队列子集,执行批量插入,将两个或多个队列合并为一个,增加优先级任何元素等。
3、区分优先队列与队列:
可以将优先级队列想象为已修改的队列,但是当一个人从队列中获取下一个元素时,将首先检索优先级最高的元素。
堆栈和队列可以被建模为特定类型的优先级队列。提醒一下,堆栈和队列的行为方式如下:
堆栈 - 元素以最后一个顺序被拉入(例如,一叠纸)
队列 - 元素先进先出(例如,自助餐厅中的一条线)
在堆栈中,每个插入元素的优先级是单调递增的;因此,插入的最后一个元素始终是第一个检索的元素。在队列中,每个插入元素的优先级是单调递减的;因此,插入的第一个元素始终是第一个检索到的元素。
4、算法图示:
三、B树以及B树的家庭成员:
1、B树总体简介(感谢参考@小小少年Boy的总结):
利用平衡树的优势加快查询的稳定性和速度;
B+树的数据都存储在叶子结点中,分支结点均为索引,查询时只需要扫描叶子节点,常用于数据库索引;
B树其分支结点和叶子节点都存储着数据,查询时需要进行一个遍历,常用于文件索引;
B树和B+树区别:
关键字数量不同:B+树分支结点M个关键字,叶子节点也有M个;B树分支结点则存在 k-1 个关键码
数据存储位置不同:B+树数据存储在叶子结点上;B树存储在每个结点上;
查询不同:B+树是从根节点到叶子节点的路径;B树是只需要找到数据就可以
分支节点存储信息不同:B+树存索引信息;B树存的是数据关键字
小结:
B树:二叉树,每个结点只存储一个关键字,等于则命中,小于走左结点,大于走右结点;
B-树:多路搜索树,每个结点存储M/2到M个关键字,非叶子结点存储指向关键字范围的子结点;所有关键字在整颗树中出现,且只出现一次,非叶子结点可以命中;
B+树:在B-树基础上,为叶子结点增加链表指针,所有关键字都在叶子结点中出现,非叶子结点作为叶子结点的索引;B+树总是到叶子结点才命中;
B*树: 在B+树基础上,为非叶子结点也增加链表指针,将结点的最低利用率从1/2提高到2/3;
2、B树的特点:
B类树是平衡树,每个结点到叶子结点的高度都是相同,这也保证了每个查询是稳定的,查询的时间复杂度时long2(n);
其次是构造一个多阶B类树,然后在尽量多的在结点上存储相关的信息,保证层数尽量的少,以便后面我们可以更快的找到信息;
总结:利用平衡树的优势加快查询的稳定性和速度。
3、B树的操作:
插入:新结点一般插在第h层,通过搜索找到对应的结点进行插入,那么根据即将插入的结点的数量又分为下面几种情况。
删除:
同样的,我们需要先通过搜索找到相应的值,存在则进行删除,需要考虑删除以后的情况,
4、有关B-树的具体内容:
B-树是一种多路搜索树(并不是二叉的):
1.定义任意非叶子结点最多只有M个儿子;且M>2;
2.根结点的儿子数为[2, M];
3.除根结点以外的非叶子结点的儿子数为[M/2, M];
4.每个结点存放至少M/2-1(取上整)和至多M-1个关键字;(至少2个关键字)
5.非叶子结点的关键字个数=指向儿子的指针个数-1;
6.非叶子结点的关键字:K[1], K[2], …, K[M-1];且K[i] < K[i+1];
7.非叶子结点的指针:P[1], P[2], …, P[M];其中P[1]指向关键字小于K[1]的子树,P[M]指向关键字大于K[M-1]的子树,其它P[i]指向关键字属于(K[i-1], K[i])的子树;
8.所有叶子结点位于同一层;
B-树的搜索:
从根结点开始,对结点内的关键字(有序)序列进行二分查找,如果命中则结束,否则进入查询关键字所属范围的儿子结点;重复,直到所对应的儿子指针为空,或已经是叶子结点;
B-树的特性:
1.关键字集合分布在整棵树中;
2.任何一个关键字出现且只出现在一个结点中;
3.搜索有可能在非叶子结点结束;
4.其搜索性能等价于在关键字全集内做一次二分查找;
5.自动层次控制;
5、有关B+树的具体内容:
B+树是B-树的变体,也是一种多路搜索树:
1.其定义基本与B-树同,除了:
2.非叶子结点的子树指针与关键字个数相同;
3.非叶子结点的子树指针P[i],指向关键字值属于[K[i], K[i+1])的子树(B-树是开区间);
5.为所有叶子结点增加一个链指针;
6.所有关键字都在叶子结点出现;
B+的搜索:
与B-树也基本相同,区别是B+树只有达到叶子结点才命中(B-树可以在非叶子结点命中),其性能也等价于在关键字全集做一次二分查找;
B+的特性:
1.所有关键字都出现在叶子结点的链表中(稠密索引),且链表中的关键字恰好是有序的;
2.不可能在非叶子结点命中;
3.非叶子结点相当于是叶子结点的索引(稀疏索引),叶子结点相当于是存储(关键字)数据的数据层;
4.更适合文件索引系统;
6、对比B-和B+树:
这都是由于B+树和B具有这不同的存储结构所造成的区别,以一个m阶树为例。
以下是一个B树生成网站,可以根据用户键入的B树来生成对应的图例,可以供理解学习使用:
https://www.cs.usfca.edu/~galles/visualization/BTree.html
四、红黑树:
由于前面讲查找树的那一部分的时候已经提到过平衡二叉查找树和红黑树的基本概念,故此处仅介绍大致深入的知识内容。
1、概念:
R-B Tree,全称是Red-Black Tree,又称为“红黑树”,它一种特殊的二叉查找树。红黑树的每个节点上都有存储位表示节点的颜色,可以是红(Red)或黑(Black)。
红黑树的特性:
(1)每个节点或者是黑色,或者是红色。
(2)根节点是黑色。
(3)每个叶子节点(NIL)是黑色。 [注意:这里叶子节点,是指为空(NIL或NULL)的叶子节点!]
(4)如果一个节点是红色的,则它的子节点必须是黑色的。
(5)从一个节点到该节点的子孙节点的所有路径上包含相同数目的黑节点。
注意:
(01) 特性(3)中的叶子节点,是只为空(NIL或null)的节点。
(02) 特性(5),确保没有一条路径会比其他路径长出俩倍。因而,红黑树是相对是接近平衡的二叉树。
2、算法描述:
红黑树的时间复杂度为: O(lgn)
下面通过“数学归纳法”对红黑树的时间复杂度进行证明。
定理:一棵含有n个节点的红黑树的高度至多为2log(n+1).
证明:
"一棵含有n个节点的红黑树的高度至多为2log(n+1)" 的逆否命题是 "高度为h的红黑树,它的包含的内节点个数至少为 2h/2-1个"。
我们只需要证明逆否命题,即可证明原命题为真;即只需证明 "高度为h的红黑树,它的包含的内节点个数至少为 2h/2-1个"。
从某个节点x出发(不包括该节点)到达一个叶节点的任意一条路径上,黑色节点的个数称为该节点的黑高度(x's black height),记为bh(x)。关于bh(x)有两点需要说明:
第1点:根据红黑树的"特性(5) ,即从一个节点到该节点的子孙节点的所有路径上包含相同数目的黑节点"可知,从节点x出发到达的所有的叶节点具有相同数目的黑节点。这也就意味着,bh(x)的值是唯一的!
第2点:根据红黑色的"特性(4),即如果一个节点是红色的,则它的子节点必须是黑色的"可知,从节点x出发达到叶节点"所经历的黑节点数目">= "所经历的红节点的数目"。假设x是根节点,则可以得出结论"bh(x) >= h/2"。进而,我们只需证明 "高度为h的红黑树,它的包含的黑节点个数至少为 2bh(x)-1个"即可。
到这里,我们将需要证明的定理已经由
"一棵含有n个节点的红黑树的高度至多为2log(n+1)"
转变成只需要证明
"高度为h的红黑树,它的包含的内节点个数至少为 2bh(x)-1个"。
下面通过"数学归纳法"开始论证高度为h的红黑树,它的包含的内节点个数至少为 2bh(x)-1个"。
(01) 当树的高度h=0时,
内节点个数是0,bh(x) 为0,2bh(x)-1 也为 0。显然,原命题成立。
(02) 当h>0,且树的高度为 h-1 时,它包含的节点个数至少为 2bh(x)-1-1。这个是根据(01)推断出来的!
下面,由树的高度为 h-1 的已知条件推出“树的高度为 h 时,它所包含的节点树为 2bh(x)-1”。
当树的高度为 h 时,
对于节点x(x为根节点),其黑高度为bh(x)。
对于节点x的左右子树,它们黑高度为 bh(x) 或者 bh(x)-1。
根据(02)的已知条件,我们已知 "x的左右子树,即高度为 h-1 的节点,它包含的节点至少为 2bh(x)-1-1 个";
所以,节点x所包含的节点至少为 ( 2bh(x)-1-1 ) + ( 2bh(x)-1-1 ) + 1 = 2^bh(x)-1。即节点x所包含的节点至少为 2bh(x)-1。
因此,原命题成立。
由(01)、(02)得出,"高度为h的红黑树,它的包含的内节点个数至少为 2^bh(x)-1个"。
因此,“一棵含有n个节点的红黑树的高度至多为2log(n+1)”。
3、算法图例:
关于红黑树的大致操作,可以通过下述代码进行理解,若非计算机专业同学可以忽略,此处便不再费笔墨总结。
上述高级数据结构总结内容的代码对应如下,部分详析已嵌入代码注释中:
- // 第十章 高级数据结构.cpp : 此文件不包含 "main" 函数。程序执行将分别在下述的各个cpp中。编写—JoeyBG,算法尚有不足之处,敬请谅解。
- //
-
- /*
- #include <iostream>
- #include<algorithm>
- #include<math.h>
- #include<iomanip>
- using namespace std;
- */
-
- // 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单
- // 调试程序: F5 或调试 >“开始调试”菜单
- // 入门使用技巧:
- // 1. 使用解决方案资源管理器窗口添加/管理文件
- // 2. 使用团队资源管理器窗口连接到源代码管理
- // 3. 使用输出窗口查看生成输出和其他消息
- // 4. 使用错误列表窗口查看错误
- // 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目
- // 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件
- //并查集
- #include<iostream>
- #include<algorithm>
- using namespace std;
- const int N=100;
- int father[N];
- int n, m;
-
- void Init(int n)//初始化
- {
- for(int i=1;i<=n;i++)
- father[i]=i;
- }
-
- int Find(int x)//找祖宗
- {
- if(x!=father[x])
- father[x]=Find(father[x]);
- return father[x];
- }
-
- int Merge(int a,int b)//合并集合
- {
- int p=Find(a);
- int q=Find(b);
- if(p==q) return 0;
- if(p>q)
- father[p]=q;//小的赋值给大的集合号
- else
- father[q]=p;
- return 1;
- }
-
- int main()
- {
- int sum=0,u,v;
- cout<<"输入人数n和亲戚关系数m:"<<endl;
- cin>>n>>m;
- Init(n);
- cout<<"输入有亲戚关系的两个人编号u,v"<<endl;
- for(int i=1;i<=m;i++)
- {
- cin>>u>>v;
- Merge(u,v);
- }
- for(int i=1;i<=n;i++)//测试
- cout<<father[i];
- for(int i=1;i<=n;i++)//输出有多少个家族
- if(father[i]==i)
- sum++;
- cout<<"家族数为:"<<sum<<endl;
- return 0;
- }
- //优先队列(堆)
- #include<iostream>
- using namespace std;
-
- #define maxN 1000
- int r[maxN];
-
- void Sink(int k,int n)//下沉操作
- {
- while(2*k<=n)//如果有左孩子
- {
- int j=2*k;//j指向左孩子
- if(j<n&&r[j]<r[j+1])//如果有右孩子且左孩子比右孩子小
- j++; //j指向右孩子
- if(r[k]>=r[j])//比较大的孩子大
- break; //已满足堆
- else
- swap(r[k],r[j]);//与较大的孩子交换
- k=j;//k指向交换后的新位置,继续向下比较,一直下沉到叶子
- }
- }
-
- void Swim(int k)//上浮操作
- {
- while(k>1&&r[k]>r[k/2])//如果大于双亲
- {
- swap(r[k],r[k/2]);//与双亲交换
- k=k/2;//k指向交换后的新位置,继续向上比较,一直上浮到根
- }
- }
-
- void CreatHeap(int n)//构建初始堆
- {
- for(int i=n/2;i>0;i--)//从最后一个分支结点n/2开始下沉调整为堆,直到第一个结点
- Sink(i,n);
- }
-
- void push(int n,int x)//入队
- {
- r[++n]=x;//n加1后,将新元素放入尾部
- Swim(n);//最后一个元素上浮操作
- }
-
- void pop(int n)//出队
- {
- cout<<r[1]<<endl;//输出堆顶
- r[1]=r[n--];//最后一个元素代替堆顶,n减1
- Sink(1,n);//堆顶下沉操作
- }
-
- int main()
- {
- int n,select,x;
- cout<<"请输入待排序记录个数:"<<endl;
- cin>>n;
- cout<<"请输入n个整数:"<<endl;
- for(int i=1;i<=n;i++)
- cin>>r[i];
- CreatHeap(n);//创建初始堆
- while(true)
- {
- cout<<"请选择数字:1.入队;2.出队;0.退出"<<endl;
- cin>>select;
- switch(select)
- {
- case 1:
- cout<<"输入入队元素:"<<endl;
- cin>>x;
- push(n,x);//入队
- break;
- case 2:
- pop(n);//出队
- break;
- case 0:
- return 0;
- }
- }
- return 0;
- }
- //B树—btree.h头文件代码
- #ifndef _BTREE_H_
- #define _BTREE_H_
-
- #define T 100
- #define BTREE_OK 0
- #define BTREE_ERR -1
-
- typedef struct btree_node
- {
- int key_num;
- int key[2 * T - 1];
- int seek[2 * T];
- int self;
- int parent;
- }btree_node;
-
- typedef struct btree
- {
- struct btree_node *root;
- FILE *fp;
- }btree;
- int btree_insert(btree *tree, int key);
- int btree_split(btree *tree, btree_node *node);
- btree_node *btree_search(btree *tree, int key);
- btree *btree_create(const char *file);
- int btree_delete(btree *tree, int key);
- int btree_merge(btree *tree, btree_node *left, btree_node *right, btree_node *parent);
- #endif
- //B树——btree.c源程序代码
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "btree.h"
-
- static int btree_read_disk(btree *tree, int seek, btree_node *node)
- {
- if(fseek(tree->fp, seek, SEEK_SET) == -1)
- return BTREE_ERR;
- char *read_buf = calloc(1, sizeof(btree_node));
- if(fread(read_buf, sizeof(btree_node), 1, tree->fp) == -1)
- return BTREE_ERR;
- memcpy(node, read_buf, sizeof(btree_node));
- return BTREE_OK;
- }
-
- static int btree_write_disk(btree *tree, int seek, btree_node *node)
- {
- if(fseek(tree->fp, seek, SEEK_SET) == -1)
- return BTREE_ERR;
- if(fwrite((void *)node, sizeof(btree_node), 1, tree->fp) == -1)
- return BTREE_ERR;
- return BTREE_OK;
- }
-
- static int btree_key_index(btree_node *node, int key)
- {
- int low = 0;
- int high = node->key_num - 1;
- int middle = (low + high) / 2;
- while(low <= high)
- {
- if(node->key[middle] == key)
- return middle;
- else if(node->key[middle] > key)
- high = middle - 1;
- else
- low = middle + 1;
- middle = (low + high) / 2;
- }
- return high + 1;
- }
-
- static int btree_end_seek_of_file(btree *tree)
- {
- if(fseek(tree->fp, 0, SEEK_END) == -1)
- return BTREE_ERR;
- return ftell(tree->fp);
- }
-
- static void btree_view(btree *tree, btree_node *node)
- {
- int i;
- for(i = 0; i < node->key_num; i++)
- printf("key:%d, self:%d, parent:%d, seek[0]:%d\n", node->key[i], node->self, node->parent, node->seek[0]);
- if(node->seek[0] != -1)
- {
- btree_node *child = calloc(1, sizeof(btree_node));
- if(child == NULL)
- return;
- for(i = 0; i < node->key_num + 1; i++)
- {
- if(btree_read_disk(tree, node->seek[i], child) == BTREE_ERR)
- return;
- btree_view(tree, child);
- }
- }
- }
-
- static btree_node *btree_node_create()
- {
- btree_node *node = malloc(sizeof(btree_node));
- node->self = -1;
- node->parent = -1;
- int i;
- for(i = 0; i < 2 * T - 1; i++)
- node->key[i] = 0;
- for(i = 0; i < 2 * T; i++)
- node->seek[i] = -1;
- node->key_num = 0;
- return node;
- }
-
- static int btree_successor(btree *tree, btree_node *node, btree_node *successor, int index)
- {
- if(node->seek[0] == -1)
- return BTREE_ERR;
- if(btree_read_disk(tree, node->seek[index], successor) == BTREE_ERR)
- return BTREE_ERR;
- while(successor->seek[0] != -1)
- if(btree_read_disk(tree, successor->seek[0], successor) == BTREE_ERR)
- return BTREE_ERR;
- return BTREE_OK;
- }
-
- btree *btree_create(const char *file)
- {
- FILE *fp = fopen(file, "w+");
- if(fp == NULL)
- return NULL;
- btree *tree = calloc(1, sizeof(btree));
- if(tree == NULL)
- return NULL;
- tree->fp = fp;
- tree->root = btree_node_create();
- tree->root->self = 0;
- if(btree_write_disk(tree, tree->root->self, tree->root) == BTREE_ERR)
- return NULL;
- return tree;
- }
-
- btree_node *btree_search(btree *tree, int key)
- {
- btree_node *node = calloc(1, sizeof(btree_node));
- if(node == NULL)
- return NULL;
- *node = *tree->root;
- int key_index = btree_key_index(node, key);
- while(node->seek[0] != -1 && node->key[key_index] != key)
- {
- if(btree_read_disk(tree, node->seek[key_index], node) == BTREE_ERR)
- return NULL;
- key_index = btree_key_index(node, key);
- }
- if(node->key[key_index] == key)
- return node;
- return NULL;
- }
-
- int main(int argc, char *argv[])
- {
- int i;
- btree *tree = btree_create("source");
- for(i = 0; i < 100000; i++)
- btree_insert(tree, i);
- for(i = 0; i < 100000; i++)
- btree_delete(tree, i);
- return 0;
- }
-
- int btree_insert(btree *tree, int key)
- {
- btree_node *node = calloc(1, sizeof(btree_node));
- if(node == NULL)
- return BTREE_ERR;
- *node = *tree->root;
- if(btree_split(tree, node) == BTREE_ERR)
- return BTREE_ERR;
- int key_index = btree_key_index(node, key);
- while(node->seek[0] != -1)
- {
- if(btree_read_disk(tree, node->seek[key_index], node) == BTREE_ERR)
- return BTREE_ERR;
- if(btree_split(tree, node) == BTREE_ERR)
- return BTREE_ERR;
- key_index = btree_key_index(node, key);
- }
- int i;
- for(i = node->key_num; i > key_index; i--)
- node->key[i] = node->key[i - 1];
- node->key[key_index] = key;
- node->key_num++;
- if(btree_write_disk(tree, node->self, node) == BTREE_ERR)
- return BTREE_ERR;
- if(tree->root->self == node->self)
- *tree->root = *node;
- return BTREE_OK;
- }
-
- int btree_split(btree *tree, btree_node *node)
- {
- if(node->key_num < 2 * T - 1)
- return BTREE_OK;
- btree_node *brother = btree_node_create();
- brother->self = btree_end_seek_of_file(tree);
- int save_key = node->key[T - 1];
- int i;
- for(i = T; i < node->key_num; i++)
- brother->key[i - T] = node->key[i];
- if(node->seek[0] != -1)
- for(i = T; i < node->key_num + 1; i++)
- {
- brother->seek[i - T] = node->seek[i];
- btree_node *child = calloc(1, sizeof(btree_node));
- if(child == NULL)
- return BTREE_ERR;
- if(btree_read_disk(tree, node->seek[i], child) == BTREE_ERR)
- return BTREE_ERR;
- child->parent = brother->self;
- if(btree_write_disk(tree, child->self, child) == BTREE_ERR)
- return BTREE_ERR;
- }
- node->key_num = brother->key_num = T - 1;
- btree_node *parent = calloc(1, sizeof(btree_node));
- if(parent == NULL)
- return BTREE_ERR;
- if(node->parent == -1)
- {
- parent = btree_node_create();
- tree->root = parent;
- parent->self = brother->self + sizeof(btree_node);
- node->parent = parent->self;
- }
- else
- if(btree_read_disk(tree, node->parent, parent) == BTREE_ERR)
- return BTREE_ERR;
- int key_index = btree_key_index(parent, node->key[0]);
- for(i = parent->key_num; i > key_index; i--)
- parent->key[i] = parent->key[i - 1];
- parent->key[i] = save_key;
- for(i = parent->key_num + 1; i > key_index + 1; i--)
- parent->seek[i] = parent->seek[i - 1];
- parent->seek[key_index] = node->self;
- parent->seek[key_index + 1] = brother->self;
- parent->key_num++;
- brother->parent = node->parent;
-
- btree_write_disk(tree, parent->self, parent);
- btree_write_disk(tree, brother->self, brother);
- btree_write_disk(tree, node->self, node);
- if(btree_read_disk(tree, tree->root->self, tree->root) == BTREE_ERR)
- return BTREE_ERR;
- *node = *parent;
- return BTREE_OK;
- }
-
- int btree_delete(btree *tree, int key)
- {
- btree_node *node = btree_search(tree, key);
- if(node == NULL)
- return BTREE_ERR;
- int key_index = btree_key_index(node, key);
- if(node->seek[0] != -1)
- {
- btree_node *successor = btree_node_create();
- if(btree_successor(tree, node, successor, key_index + 1) == BTREE_ERR)
- return BTREE_ERR;
- node->key[key_index] = successor->key[0];
- if(btree_write_disk(tree, node->self, node) == BTREE_ERR)
- return BTREE_ERR;
- if(node->self == tree->root->self)
- *tree->root = *node;
- node = successor;
- key_index = 0;
- }
- int i;
- for(i = key_index; i < node->key_num - 1; i++)
- node->key[i] = node->key[i + 1];
- node->key_num--;
- btree_write_disk(tree, node->self, node);
- while(node->key_num < T - 1 && node->self != tree->root->self)
- {
- btree_node *parent = btree_node_create();
- if(btree_read_disk(tree, node->parent, parent) == BTREE_ERR)
- return BTREE_ERR;
- key_index = btree_key_index(parent, node->key[0]);
- if(parent->key_num == key_index + 1 && parent->key[key_index] == node->key[0])
- key_index++;
- btree_node *brother = btree_node_create();
- if(key_index == parent->key_num)
- {
- if(btree_read_disk(tree, parent->seek[key_index - 1], brother) == BTREE_ERR)
- return BTREE_ERR;
- if(brother->key_num > T - 1)
- {
- for(i = node->key_num; i > 0; i--)
- node->key[i] = node->key[i - 1];
- for(i = node->key_num + 1; i > 0; i--)
- node->seek[i] = node->seek[i - 1];
- node->key[0] = parent->key[parent->key_num - 1];
- node->seek[0] = brother->seek[brother->key_num];
- if(node->seek[0] != -1)
- {
- btree_node *child = btree_node_create();
- if(btree_read_disk(tree, brother->seek[brother->key_num], child) == BTREE_ERR)
- return BTREE_ERR;
- child->parent = node->self;
- if(btree_write_disk(tree, child->self, child) == BTREE_ERR)
- return BTREE_ERR;
- }
- node->key_num++;
- parent->key[parent->key_num - 1] = brother->key[brother->key_num - 1];
- brother->key_num--;
- }
- else
- btree_merge(tree, brother, node, parent);
- }
- else
- {
- if(btree_read_disk(tree, parent->seek[key_index + 1], brother) == BTREE_ERR)
- return BTREE_ERR;
- if(brother->key_num > T - 1)
- {
- node->key[node->key_num] = parent->key[key_index];
- parent->key[key_index] = brother->key[0];
- node->key_num++;
- for(i = 0; i < brother->key_num - 1; i++)
- brother->key[i] = brother->key[i + 1];
- node->seek[node->key_num] = brother->seek[0];
- if(node->seek[node->key_num] != -1)
- {
- btree_node *child = btree_node_create();
- if(btree_read_disk(tree, brother->seek[0], child) == BTREE_ERR)
- return BTREE_ERR;
- child->parent = node->self;
- if(btree_write_disk(tree, child->self, child) == BTREE_ERR)
- return BTREE_ERR;
- }
- for(i = 0; i < brother->key_num; i++)
- brother->seek[i] = brother->seek[i + 1];
- brother->key_num--;
- }
- else
- btree_merge(tree, node, brother, parent);
- }
- btree_write_disk(tree, parent->self, parent);
- btree_write_disk(tree, node->self, node);
- btree_write_disk(tree, brother->self, brother);
- if(tree->root->self == parent->self)
- *tree->root = *parent;
- *node = *parent;
- }
- if(tree->root->self == node->self)
- *tree->root = *node;
- return BTREE_OK;
- }
-
- int btree_merge(btree *tree, btree_node *left, btree_node *right, btree_node *parent)
- {
- int key_index = btree_key_index(parent, left->key[0]);
- int save_key = parent->key[key_index];
- int i;
- for(i = key_index; i < parent->key_num - 1; i++)
- parent->key[i] = parent->key[i + 1];
- for(i = key_index + 1; i < parent->key_num + 1; i++)
- parent->seek[i] = parent->seek[i + 1];
- parent->key_num--;
-
- left->key[left->key_num] = save_key;
- left->key_num++;
- for(i = 0; i < right->key_num; i++)
- left->key[i + left->key_num] = right->key[i];
- if(right->seek[0] != -1)
- for(i = 0; i < right->key_num + 1; i++)
- {
- left->seek[i + left->key_num] = right->seek[i];
- btree_node *child = calloc(1, sizeof(btree_node));
- if(child == NULL)
- return BTREE_ERR;
- if(btree_read_disk(tree, right->seek[i], child) == BTREE_ERR)
- return BTREE_ERR;
- child->parent = left->self;
- if(btree_write_disk(tree, child->self, child) == BTREE_ERR)
- return BTREE_ERR;
- free(child);
- }
- left->key_num += right->key_num;
- if(tree->root->self == parent->self && parent->key_num == 0)
- {
- left->parent = -1;
- *tree->root = *left;
- }
- btree_write_disk(tree, parent->self, parent);
- btree_write_disk(tree, left->self, left);
- btree_write_disk(tree, right->self, right);
- return BTREE_OK;
- }
- //红黑树
- #include <vector>
- #include <assert.h>
- #include <stdio.h>
- using namespace std;
-
- enum E_COLOR {
- BLACK,
- RED
- };
-
- struct RBNode {
- RBNode(int k, E_COLOR c) :
- key(k), color(c), p(nullptr), left(nullptr), right(nullptr)
- { }
- RBNode(int k, E_COLOR c, RBNode * ptr1, RBNode * ptr2, RBNode * ptr3) :
- key(k), color(c), p(ptr1), left(ptr2), right(ptr3)
- { }
-
- int key;
- E_COLOR color;
- RBNode * p;
- RBNode * left;
- RBNode * right;
- };
-
- class RBTree {
- public:
- RBTree() {
- NIL = new RBNode(0, BLACK);
- NIL->left = NIL;
- NIL->right = NIL;
- NIL->p = NIL;
-
- root = NIL;
- }
- ~RBTree() {
- Clear();
- delete NIL;
- }
-
- RBNode * FindKey(int key) {
- RBNode * pNode = root;
-
- while (pNode != NIL) {
- if (pNode->key < key) {
- pNode = pNode->right;
- }
- else if (pNode->key > key) {
- pNode = pNode->left;
- }
- else {
- return pNode;
- }
- }
-
- return nullptr;
- }
-
- RBNode * FindInsertPos(int key) {
- RBNode * pNode = root;
- while (pNode != NIL) {
- if (pNode->key < key) {
- if (pNode->right == NIL) {
- return pNode;
- }
- else {
- pNode = pNode->right;
- }
- }
- else if (pNode->key > key) {
- if (pNode->left == NIL) {
- return pNode;
- }
- else {
- pNode = pNode->left;
- }
- }
- else {
- return NIL;
- }
- }
-
- return NIL;
- }
-
- RBNode * FindDeletePos(int key) {
- RBNode * pNode = root;
-
- while (pNode != NIL) {
- if (pNode->key < key) {
- pNode = pNode->right;
- }
- else if (pNode->key > key) {
- pNode = pNode->left;
- }
- else {
- return pNode;
- }
- }
-
- return NIL;
- }
-
- void InsertKey(int key) {
-
- RBNode * pNode = FindInsertPos(key);
- if (root != NIL && pNode == NIL) {
- return;
- }
- RBNode * new_node = new RBNode(key, RED, NIL, NIL, NIL);
-
- if (pNode == NIL) {
- root = new_node;
- }
- else if (pNode->key < key) {
- pNode->right = new_node;
- new_node->p = pNode;
- }
- else {
- pNode->left = new_node;
- new_node->p = pNode;
- }
-
- InsertAdjust(new_node);
- }
-
- void InsertAdjust(RBNode * cur_node) {
- if (root == cur_node) {
- cur_node->color = BLACK;
- NIL->left = cur_node;
- cur_node->p = NIL;
- }
- else if (cur_node->p->color == RED) {
- RBNode * grandpa = cur_node->p->p;
- RBNode * pa = cur_node->p;
- RBNode * uncle = NIL;
- if (grandpa->left == cur_node->p) {
- uncle = grandpa->right;
- if (uncle->color == RED) {
- pa->color = BLACK;
- uncle->color = BLACK;
- grandpa->color = RED;
- InsertAdjust(grandpa);
- }
- else {
- if (pa->right == cur_node) {
- left_rotate(pa);
- pa = cur_node;
- }
- right_rotate(grandpa);
- grandpa->color = RED;
- pa->color = BLACK;
- }
- }
- else {
- uncle = grandpa->left;
- if (uncle->color == RED) {
- pa->color = BLACK;
- uncle->color = BLACK;
- grandpa->color = RED;
- InsertAdjust(grandpa);
- }
- else {
- if (pa->left == cur_node) {
- right_rotate(pa);
- pa = cur_node;
- }
- left_rotate(grandpa);
- grandpa->color = RED;
- pa->color = BLACK;
- }
- }
- }
- }
-
-
-
- RBNode * FindSuccessor(RBNode * z) { // assume z have right tree
- assert(z->right != NIL);
-
- RBNode * p = z->right;
- while (p->left != NIL) {
- p = p->left;
- }
- return p;
- }
-
- void DeleteKey(int key) {
- RBNode * z = FindDeletePos(key);
- if (z == NIL) return ;
-
- RBNode * y = NIL;
- if (z->left == NIL || z->right == NIL) {
- y = z;
- }
- else {
- y = FindSuccessor(z);
- swap(y->key, z->key);
- }
-
- RBNode * yp = y->p;
- RBNode * ychild = y->left != NIL ? y->left : y->right;
-
- ychild->p = yp;
- if (yp->left == y) {
- yp->left = ychild;
- }
- else {
- yp->right = ychild;
- }
-
- if (yp == NIL) {
- root = ychild;
- }
-
- if (y->color == BLACK)
- DeleteAdjust(ychild);
-
- delete y;
- }
-
- void DeleteAdjust(RBNode *cur_node) {
- if (cur_node == root
- || cur_node->color == RED) {
- cur_node->color = BLACK;
- }
- else {
- RBNode * x = cur_node;
- RBNode * y = x->p;
- if (y->left == x) {
- RBNode * z = y->right;
- RBNode * zleft = z->left;
- RBNode * zright = z->right;
-
- if (z->color == RED) {
- left_rotate(y);
- y->color = RED;
- z->color = BLACK;
- DeleteAdjust(x);
- }
- else if (zleft->color == BLACK && zright->color == BLACK) {
- z->color = RED;
- DeleteAdjust(y);
- }
- else if (zleft->color == RED && zright->color == BLACK) {
- right_rotate(z);
- zleft->color = BLACK;
- z->color = RED;
- DeleteAdjust(x);
- }
- else {
- left_rotate(y);
- y->color = BLACK;
- z->color = RED;
- zright->color = BLACK;
- }
-
- }
- else {
- RBNode * z = y->left;
- RBNode * zleft = z->left;
- RBNode * zright = z->right;
-
- if (z->color == RED) {
- right_rotate(y);
- y->color = RED;
- z->color = BLACK;
- DeleteAdjust(x);
- }
- else if (zleft->color == BLACK && zright->color == BLACK) {
- z->color = RED;
- DeleteAdjust(y);
- }
- else if (zleft->color == BLACK && zright->color == RED) {
- left_rotate(z);
- zright->color = BLACK;
- z->color = RED;
- DeleteAdjust(x);
- }
- else {
- right_rotate(y);
- y->color = BLACK;
- z->color = RED;
- zleft->color = BLACK;
- }
- }
- }
- }
-
- void left_rotate(RBNode * x) { // y 是 x 的右孩子
- RBNode * y = x->right;
- RBNode * xp = x->p;
- RBNode * yleft = y->left;
-
- y->p = xp;
- if (xp->left == x) {
- xp->left = y;
- }
- else {
- xp->right = y;
- }
-
- y->left = x;
- x->p = y;
-
- x->right = yleft;
- yleft->p = x;
-
- if (root == x) {
- root = y;
- }
- }
-
- void right_rotate(RBNode * x) { // y是 x的左孩子
- RBNode * y = x->left;
- RBNode * xp = x->p;
- RBNode * yright = y->right;
-
- y->p = xp;
- if (xp->left == x) {
- xp->left = y;
- }
- else {
- xp->right = y;
- }
-
- y->right = x;
- x->p = y;
- x->left = yright;
- yright->p = x;
-
- if (root == x) {
- root = y;
- }
- }
-
- void Output(RBNode * pNode) {
- if (pNode == NIL) return;
-
- Output(pNode->left);
- printf("%d ", pNode->key);
- Output(pNode->right);
- }
-
- void Output() {
- Output(root);
- }
-
- void Clear(RBNode * pNode) {
- if (pNode == NIL) {
- return;
- }
-
- Clear(pNode->left);
- Clear(pNode->right);
- delete pNode;
- }
-
- void Clear() {
- Clear(root);
- root = NIL;
- }
-
- private:
- RBNode * root;
- private:
- RBNode * NIL;
- };
-
- int main(int argc, char ** argv) {
- RBTree tree;
- vector<int> vecNum = { 1, 3, 2, 4, 5, 6, 10, 2, 19, -1, 20, 50, 22 };
-
-
- for (int i = 0; i < vecNum.size(); ++i) {
- tree.InsertKey(vecNum[i]);
- }
-
- tree.Output();
- puts("");
-
- for (int i = 0; i < vecNum.size(); ++i) {
- tree.DeleteKey(vecNum[i]);
- }
-
-
- tree.Output();
- puts("");
- tree.DeleteKey(50);
-
- tree.Output();
- puts("");
-
- tree.InsertKey(1000);
- tree.Output();
- puts("");
-
- return 0;
- }
- /*
- 参考文献:
- 1、陈小玉:趣学数据结构,人民邮电出版社,2019.09
- 2、IT孤独者:红黑树C++ 实现,
- https://www.jianshu.com/p/9134a977d532,2017.03
- 3、LyleMalik:C语言b树的实现,https://www.cnblogs.com/LyleMalik/archive/2012/12/14/2818040.html,2012.12
- */
最后讨论我们C++数据结构课程的第二次大作业,在我们组员开会之后,我们一致认为这个自动生成迷宫是最麻烦的,因为这个东西涉及生成的迷宫能否实际上把路走通。如果是完全随机生成,那么大致有90%的概率会生成一个根本走不通的迷宫,这是我们的为难之处。
于是我找到了我的老同学,交谈一番之后,了解到其实迷宫的自动生成正是可以用先前提到的高级数据结构中的并查集实现。而且,实现迷宫实际上比建立完整的并查集算法还要简单一点,因为所有的数据类似于二进制,没够黑框的是0,有黑框的是1走不通,设计难度反而相对下降了。
以下详细介绍从他那里学到的并查集实现方法:
问题描述:
给定一个n个序列的对象,有两种操作:
-Union command:连接两个对象;
-Find/connected query:两个对象是否连接(有路径)
算法实现:
1.用一个数组保存着每个对象所在的connected component,这种方式可以快速进行FIND,但是在union操作时需要遍历整个对象数组
2.利用树的观点,在数组中保存每个对象节点的parent,这个每个connected component就是一棵树,这种方式union很高效,只需要更新相应节点的parent即可,但是在find的时候可能就会遍历整个树,特别是当一棵树比较高的时候。
3.在上述2中实现union(p,q)的时候,我们用一种特定的方式将p所在的树的置为q所在树的孩子,没有考虑到树的大小,就会导致严重失衡的情况。Weighted quick-union 引入一个新的数组来保存每棵树的尺寸,总是将小树链入到大树下,实现相对的平衡。
4.利用path compression进一步对上述算法进行优化,在每一次root操作的时候,不单单只是追溯查询一个节点的根,而是动态的将其根节点往上推进。从而使得component tree 越来越平坦化。如下要查询节点6的根节点,在查询的最后会更新6直接指向根节点。
回过头来看,假设在互联网中有两台计算机需要互相通信,那么该怎么确定它们之间是否已经连接起来以确定是否需要架设新的线路连接这两台计算机。这就是动态连通性问题。动态连通性问题在日常生活中十分常见。通过并查集这种数据结构及union-find算法可以解决动态连通性问题,这也是所谓的有路径的迷宫如何自动生成。有一点需要强调:因为我们需要的迷宫有上下左右墙的影响,且行数不能太少。所以创建迷宫规模的时候,强制通过输入x,y和建立2x-1,2y-1规模的迷宫模型来避免一些错误发生。
在小组讨论中,我提到了可以用queue和stack头文件完成队列和堆栈的功能,这并不是捷径,而是直接利用已有的东西简化我们的开发步骤。这个头文件包含的实际只是队列和栈的模板,具体的操作还是需要我们自己来写。但是部分诸如指针怎么指,原结构体怎么创建的工作就交给编译器自己完成了。
例如定义一个队列:
queue<(结构体的名字)> (你定义的队列名字);
queue<node> M;
queue中有几个可以调用的函数,我们直接可以使用:
1、empty(); 如果队列空则返回真
2、push( (这个里面加入你需要加入的元素或者结构体) ); 在末尾加入一个元素
3、front(); 返回第一个元素
4、back();返回最后一个元素
5、pop(); 删除第一个元素
6、size();返回队列中元素的个数
一般你定义完一个队列后最好判断一下该队列是否为空,这是empty这个函数的意义所在。
再例如建立一个栈:
stack 模板类的定义在<stack>头文件中。
stack 模板类需要两个模板参数,一个是元素类型,一个容器类型,但只有元素类型是必要
的,在不指定容器类型时,默认的容器类型为deque。具体定义代码如下:
stack<int> s1;
stack<string> s2;
stack 的基本操作有:
s.push(x); 入栈
s.pop(); 出栈,注意,出栈操作只是删除栈顶元素,并不返回该元素。
s.top(); 访问栈顶元素
s.empty(), 判断栈空,当栈空时,返回true。
s.size() 访问栈中元素个数
如果没有自动生成迷宫的操作,利用上面两个STL模板库,的确50行就可以完成解迷宫的算法,具体的解迷宫的代码我是从网上找的,粘贴在下面的ubuntu网址中。
https://paste.ubuntu.com/p/fwVncZcVGv/
基于上面的解迷宫方法,再利用前面的自动生成迷宫的算法,以及堆栈队列的STL模板,给出C++版的迷宫游戏如下:
- //并查集生成迷宫
- #include<stdlib.h>
- #include<iostream>
- #include<time.h>
- #include<queue>
- #include<stack>
- using namespace std;
- using std::queue;
- using std::stack;
- typedef struct Point
- {
- int x;
- int y;
- int d;//方向 若方向为-1,则表示起点
- }Point;
- queue<Point> mqueue;
- stack<Point> mstack;
- Point pos, pos1;
- int m, n;//迷宫行(tm-1)/2和列(tn-1)/2
- int tm, tn;//实际作图
- int x, y, tx1, tx2, ty1, ty2;//点坐标
- int d;
- int s[10000000];
- int maze[1000][1000], mark[1000][1000];//最大迷宫
- int sign[4][2] = { { -1,0 },{ 1,0 },{ 0,-1 },{ 0,1 } };//上下左右四个方向 0上 1下 2上 3下
- Point start;
- int Find_x(int x);
- void unionSets(int node1, int node2);
- void Init();
- int getAdd(int x, int y);
- void foundpath();
- void fixmaze();
- int connected(int node1, int node2);
- void Findpath();
- void changemaze();
- int main()
- {
- Init();
- cout << "请输入迷宫规模2x-1,2y-1:(x y)" << endl;
- cin >> m >> n;
- tm = m * 2 + 1;
- tn = n * 2 + 1;
- start.x = 1;
- start.y = 1;
- start.d = -1;
- mqueue.push(start);
- for (int i = 0; i < tm; i++)
- {
- for (int j = 0; j < tn; j++)
- {
- maze[i][j] = 1;
- mark[i][j] = 0;
- }
- }
- for (int i = 1; i < tm - 1; i += 2)
- {
- for (int j = 1; j < tn - 1; j += 2)
- maze[i][j] = 0;
- }
- srand(time(NULL));
- foundpath();
- fixmaze();
- cout << "迷宫全图:" << endl;
- for (int i = 0; i < tm; i++)
- {
- for (int j = 0; j < tn; j++)
- {
- if (maze[i][j] == 1)
- cout << "▇";
- else if (maze[i][j] == 0) cout << "□";
- }
- cout << endl;
- }
- Findpath();
- changemaze();
- cout << "找到的通路:“..”表示:" << endl;
- for (int i = 0; i < tm; i++)
- {
- for (int j = 0; j < tn; j++)
- {
- if (maze[i][j] == 1)
- cout << "▇";
- else if (maze[i][j] == 0) cout << "□";
- else if (maze[i][j] == -1) cout << "..";
-
- }
- cout << endl;
- }
- system("pause");
- return 0;
- }
- int connected(int node1, int node2)
- {
- return Find_x(node1) == Find_x(node2);
- }
- int Find_x(int x)
- {
- if (s[x] < 0)
- return x;
- else
- return Find_x(s[x]);
-
-
- };
- void unionSets(int node1, int node2)
- {
- int root1 = Find_x(node1);
- int root2 = Find_x(node2);
- if (root1 == root2)
- return;
- if (s[root2] < s[root1])
- s[root1] = root2;
- else {
- if (s[root1] == s[root2])
- s[root1]--;
- s[root2] = root1;
- }
- };
- int getAdd(int x, int y)
- {
- return (x*tn + y);
- };
- void Init()
- {
- for (int i = 0; i < 10000000; ++i)
- s[i] = -1;
- };
- void foundpath()
- {
- while (connected(getAdd(1, 1), getAdd(tm - 2, tn - 2)) != 1)
- {
- do
- {
- x = rand() % (tm - 2) + 1;
- y = rand() % (tn - 2) + 1;
- } while (maze[x][y] == 0);
- d = x % 2;
- if (d == 0)
- {
- tx1 = x + 1;
- ty1 = y;
- tx2 = x - 1;
- ty2 = y;
- if (connected(getAdd(tx1, ty1), getAdd(tx2, ty2)) != 1)
- {
- maze[x][y] = 0;
- unionSets(Find_x(getAdd(tx1, ty1)), Find_x(getAdd(tx2, ty2)));
- }
- }
- else if (d == 1)
- {
- tx1 = x;
- ty1 = y + 1;
- tx2 = x;
- ty2 = y - 1;
- if (connected(getAdd(tx1, ty1), getAdd(tx2, ty2)) != 1)
- {
- maze[x][y] = 0;
- unionSets(Find_x(getAdd(tx1, ty1)), Find_x(getAdd(tx2, ty2)));
- }
- }
- }
- }
- void fixmaze()
- {
- for (int i = 1; i < tm - 1; i++)
- {
- for (int j = 1; j < tn - 1; j++)
- {
- if (maze[i - 1][j] == 1 && maze[i + 1][j] == 1 && maze[i][j + 1] == 1 &&
- maze[i][j - 1] == 1)
- {
- maze[i][j] = 1;
- }
- }
- }
- for (int i = 1; i < tm - 1; i++)
- {
- for (int j = 1; j < tn - 1; j++)
- {
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 0 && maze[i][j] == 0 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 1 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 0 && maze[i][j] == 0 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 1 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 0 && maze[i][j] == 0 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 1 &&
- maze[i][j - 1] == 0 && maze[i][j] == 0 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 1 && maze[i][j] == 0 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 0 && maze[i][j] == 1 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 0 && maze[i][j] == 0 && maze[i][j + 1] == 1 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 0 && maze[i][j] == 0 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 1 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 0 && maze[i][j] == 0 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 1 && maze[i + 1][j + 1] == 0)
- {
- maze[i][j] = 1;
- }
- if (maze[i - 1][j - 1] == 0 && maze[i - 1][j] == 0 && maze[i - 1][j + 1] == 0 &&
- maze[i][j - 1] == 0 && maze[i][j] == 0 && maze[i][j + 1] == 0 && maze[i + 1][j - 1]
- == 0 && maze[i + 1][j] == 0 && maze[i + 1][j + 1] == 1)
- {
- maze[i][j] = 1;
- }
- }
- }//局部优化,防止出现大面积通路
- }
- void Findpath()
- {
- int flag = 0;
- int i, j;
- while (!mqueue.empty())
- {
- i = mqueue.front().x;
- j = mqueue.front().y;
- mark[i][j] = 1;
- for (int k = 0; k < 4; k++)
- {
- if (mark[i + sign[k][0]][j + sign[k][1]] == 0 && maze[i + sign[k][0]][j
- + sign[k][1]] == 0)
- {
- pos.x = i + sign[k][0];
- pos.y = j + sign[k][1];
- pos.d = k;
- mark[pos.x][pos.y] = 1;
- mqueue.push(pos);
- if (mqueue.back().x == tm - 2 && mqueue.back().y == tn - 2)
- {
- mstack.push(mqueue.front());
- mstack.push(mqueue.back());
- flag = 1;
- break;
- }
- }
- }
- if (flag) break;
- mstack.push(mqueue.front());
- if (!mqueue.empty())
- mqueue.pop();
- }
- }
- void changemaze()
- {
- int i, j, k;
- i = mstack.top().x;
- j = mstack.top().y;
- k = mstack.top().d;
- maze[i][j] = -1;
- while (mstack.size()>0)
- {
- if (mstack.top().x == i - sign[k][0] && mstack.top().y == j - sign[k][1])
- {
- i = i - sign[k][0];
- j = j - sign[k][1];
- k = mstack.top().d;
- maze[i][j] = -1;
- if (!mstack.empty())
- mstack.pop();
- }
- else if (!mstack.empty())
- mstack.pop();
-
- }
- }
据了解我们学校信息&自动化专业,包括徐特立学院在内,都是只学到树和森林,后面的内容也都没怎么涉及了。然而无限风光在险峰,这也不失为一种遗憾。这一专栏十篇博文,想必即使有人看,也顶多是嫖走学校平台上的题目解答,或者是只看文字,但很多经典的东西只有在代码里面才体会得到。那句话怎么说的呢?“我会给你幸福的”,这是故事的开始,“祝你幸福”,这是故事的结束。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。