我是靠谱客的博主 忧虑耳机,最近开发中收集的这篇文章主要介绍2015计算机学科夏令营上机考试H:Falling Leaves(搜索二叉树——重建、遍历),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
题目大意
迭代删除“搜索二叉树”的叶子结点,直至根结点。要求重建该“搜索二叉树”,并输出其先序遍历结果。
思路分析
逆向考虑。从根结点到叶子结点(从后向前)进行结点插入,重建“搜索二叉树”,再先序遍历。
相关知识——二叉搜索树
数据结构
struct Node
{
int data;
Node* lchild;
Node* rchild;
};
1. 结点构建
Node* newnode(int data)
{
Node* node = new Node;
node -> data = data;
node -> lchild = NULL;
node -> rchild = NULL;
return node;
};
2. 插入操作
void insert(Node* &root, int data) // 一定要加引用&
{
if(root == NULL) // 不存在权值为x的结点,则在该位置新建结点插入
{
root = newnode(data);
return ;
}
if(data == root->data)
{
return ;
}
else if(data < root->data)
{
insert(root->lchild, data);
}
else
{
insert(root->rchild, data);
}
}
3. 二叉搜索树建立
Node* Create(int data[], int n)
{
Node* root = NULL;
for(int i=0; i<n; i++)
{
insert(root, data[i]);
}
return root;
}
4. 搜索操作
void search(Node* root, int x)
{
if(root == NULL) // 不存在权值为x的结点
{
printf("search failedn");
return ;
}
if(x == root->data)
{
printf("%dn", root->data);
}
else if(x < root->data)
{
search(root->lchild, x);
}
else
{
search(root->rchild, x);
}
}
5. 删除操作
// 寻找以root为根结点的树中的最大权值结点
Node* findMax(Node* root)
{
while(root->rchild != NULL)
{
root = root->rchild;
}
return root;
}
// 寻找以root为根结点的树中的最小权值结点
Node* findMin(Node* root)
{
while(root->lchild != NULL)
{
root = root->lchild;
}
return root;
}
void deletenode(Node* root, int x)
{
if(root == NULL) // 不存在权值为x的结点
{
return ;
}
if(x == root->data)
{
if(root->lchild==NULL && root->rchild==NULL) // 删除的是叶子结点
{
root = NULL; // 把root地址设为NULL,父结点就引用不到它了。
}
else if(root->lchild != NULL) // 删除的结点具有左孩子——寻找其前驱
{
Node* pre = findMax(root->lchild);
root->data = pre->data;
deletenode(root->lchild, pre->data);
}
else // 删除的结点具有右孩子——寻找其后继
{
Node* next = findMin(root->rchild);
root->data = next->data;
deletenode(root->rchild, next->data);
}
}
else if(x < root->data)
{
delete(root->lchild, x);
}
else
{
delete(root->rchild, x);
}
}
代码
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
struct Node
{
char data;
Node* lchild;
Node* rchild;
};
char data_[30];
Node* newNode(int data)
{
Node* node = new Node;
node -> data = data;
node -> lchild = NULL;
node -> rchild = NULL;
return node;
}
void insert(Node* &root, char data)
{
if(root == NULL)
{
root = newNode(data);
return ;
}
if(data == root->data)
{
return ;
}
else if(data < root->data)
{
insert(root->lchild, data);
}
else
{
insert(root->rchild, data);
}
}
void preorder(Node* root)
{
if(root == NULL)
{
return ;
}
cout << root->data;
preorder(root->lchild);
preorder(root->rchild);
}
int main()
{
freopen("input.txt", "r", stdin);
char input;
int num = 0; // 记录结点个数
Node* root = NULL;
while(cin >> input)
{
if(input == '$')
{
for(int i=num-1; i>=0; i--)
{
insert(root, data_[i]);
}
preorder(root);
cout << endl;
break;
}
else if(input == '*')
{
for(int i=num-1; i>=0; i--)
{
insert(root, data_[i]);
}
preorder(root);
cout << endl;
num = 0;
root = NULL;
}
else
{
data_[num++] = input;
}
}
fclose(stdin);
return 0;
}
最后
以上就是忧虑耳机为你收集整理的2015计算机学科夏令营上机考试H:Falling Leaves(搜索二叉树——重建、遍历)的全部内容,希望文章能够帮你解决2015计算机学科夏令营上机考试H:Falling Leaves(搜索二叉树——重建、遍历)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复