数据结构算法及应用——二叉树
一、二叉树性质
特性1 包含n (n> 0 )个元素的二叉树边数为n-1
特性2 二叉树的高度(height)或深度(depth)是指该二叉树的层数(有几层元素,而不是有层的元素间隔)
特性3 若二叉树的高度为h,h≥0,则该二叉树最少有h个元素,最多有(2^h – 1)个元素。
特性4 包含n 个元素的二叉树的高度最大为n,最小[log2 (n+1)]
二、满二叉树:
当高度为h 的二叉树恰好有2^h - 1个元素时,称其为满二叉树.
三、完全二叉树
假设对高度为h 的满二叉树中的元素按从第上到下,从左到右的顺序从1到2^h- 1进行编号(如图8 - 6所示)。假设从满二叉树中删除k个元素,其编号为2^h -i, 1≤i≤k,所得到的二叉树被称为完全二叉树.
注意满二叉树是完全二叉树的一个特例,并且,注意有n个元素的完全二叉树的深度为[log2 (n+1)]
特性5 设完全二叉树中一元素的序号为i, 1≤i≤n。则有以下关系成立:
1) 当i = 1时,该元素为二叉树的根。若i > 1,则该元素父节点的编号为 下取整【i/2】
2) 当2i >n时,该元素无左孩子。否则,其左孩子的编号为2i。
3) 若2i + 1 >n,该元素无右孩子。否则,其右孩子编号为2i + 1。
四、二叉树的遍历
• 前序遍历。
• 中序遍历。
• 后序遍历。
• 逐层遍历。
在进行前序遍历时,每个节点是在其左右子树被访问之前进行访问的;
在中序遍历时,首先访问左子树,然后访问子树的根节点,最后访问右子树。
在后序遍历时,当左右子树均访问完之后才访问子树的根节点。
五、源码
1.InterfaceBinaryTree 类
#pragma once
/*
T为BinaryTreeNode<U>类型的数据
*/
template<class T>
class InterfaceBinaryTree {
//如果二叉树为空,则返回true ,否则返回false
virtual bool IsEmpty() const=0; //返回二叉树的大小
virtual int Size()const = 0; //前序遍历
virtual void PreOrder(void (*)(T *))const=0; //参数是一个指向 void Func(T*)类型的函数指针 //中序遍历
virtual void InOrder(void(*)(T *))const=0; //后序遍历
virtual void PostOrder(void(*)(T *))const=0; //逐层遍历
virtual void LevelOrder(void(*)(T *))const=0;
};
2.BinaryTreeNode类
#pragma once
template<class T>
class BinaryTreeNode{
public:
template<class T> friend class BinaryTree; BinaryTreeNode() {
leftChild = rightChild = 0;
}
BinaryTreeNode(const T &data) {
this->data = data;
leftChild = rightChild = 0;
}
BinaryTreeNode(const T &data, BinaryTreeNode<T> *leftSubTree, BinaryTreeNode<T> *rightSubTree) {
this->data = data;
leftChild = leftSubTree;
rightChild = rightSubTree;
} private:
T data;
BinaryTreeNode<T> *leftChild;
BinaryTreeNode<T> *rightChild; };
3.BinaryTree类
#pragma once
#include"BinaryTreeNode.h"
#include"InterfaceBinaryTree.h"
#include"MyException.h"
#include<iostream>
using namespace std;
template<class T>
class BinaryTree:public InterfaceBinaryTree<BinaryTreeNode<T>> {
public:
BinaryTree() { root = 0; }
~BinaryTree() {};
//如果二叉树为空,则返回true ,否则返回false
bool IsEmpty() const {
return (root == 0) ? true : false;
}
//取根节点的数据域放入x;如果操作失败,则返回false,否则返回true
bool Root(T &x)const;
//创建一个二叉树,root作为根节点, left作为左子树,right作为右子树
void MakeTree(const T &element, BinaryTree<T> &left, BinaryTree<T> &right);
//拆分二叉树
void BreakTree(T &element, BinaryTree<T> &left, BinaryTree<T> &right); void PreOrderOutput() const {
PreOrder(output);
}
void InOrderOutput()const {
InOrder(output);
}
void PostOrderOutput()const {
PostOrder(output);
} //前序遍历
void PreOrder(void(*theVisit)(BinaryTreeNode<T>*))const {
visit = theVisit; _preOrder(root);
}
//中序遍历
void InOrder(void(*theVisit)(BinaryTreeNode<T>*))const {
visit = theVisit; _inOrder(root);
}
//后序遍历
void PostOrder(void(*theVisit)(BinaryTreeNode<T>*))const {
visit = theVisit; _postOrder(root);
}
//逐层遍历
void LevelOrder(void(*theVisit)(BinaryTreeNode<T>*))const {
visit = theVisit; _levelOrder(root);
} void Delete() {
PostOrder(free);
root = 0;
}
int Height()const {
return height(root);
}
int Size()const {
count = 0;
InOrder(addCount);
return count;
}
protected:
static void _preOrder(BinaryTreeNode<T> *root);
static void _inOrder(BinaryTreeNode<T> *root);
static void _postOrder(BinaryTreeNode<T> *root);
static void _levelOrder(BinaryTreeNode<T> *root); static void(*visit)(BinaryTreeNode<T> *); //函数指针,用于遍历时的函数访问
static void output(BinaryTreeNode<T> *t) {
cout << t->data << " ";
}
static void free(BinaryTreeNode<T> *t) {
delete t;
}
static void addCount(BinaryTreeNode<T> *t) {
count++;
}
static int height(BinaryTreeNode<T> *t); private:
BinaryTreeNode<T> *root;
static int count; }; //访问函数的函数指针
template<class T>
void(*BinaryTree<T>::visit)(BinaryTreeNode<T>*);
template<class T>
int BinaryTree<T>::count = 0; //前序遍历
template<class T>
void BinaryTree<T>::_preOrder(BinaryTreeNode<T> *root) {
if (root != 0) {
BinaryTree<T>::visit(root);
_preOrder(root->leftChild);
_preOrder(root->rightChild);
}
}
//中序遍历
template<class T>
void BinaryTree<T>::_inOrder(BinaryTreeNode<T> *root) {
if (root != 0) {
_inOrder(root->leftChild);
BinaryTree<T>::visit(root);
_inOrder(root->rightChild);
}
}
//后序遍历
template<class T>
void BinaryTree<T>::_postOrder(BinaryTreeNode<T> *root) {
if (root != 0) {
_postOrder(root->leftChild);
_postOrder(root->rightChild);
BinaryTree<T>::visit(root);
}
}
//逐层遍历
template<class T>
void BinaryTree<T>::_levelOrder(BinaryTreeNode<T> *root) { } //取根节点的数据域放入x;如果操作失败,则返回false,否则返回true
template<class T>
bool BinaryTree<T>::Root(T &x)const {
if (root == 0) {
return false;
}
x = root->data;
return true;
}
/*生成一个二叉树,新建一个BinaryTreeNode节点,使其值为element,左子树为left,右子树为right*/
template<class T>
void BinaryTree<T>::MakeTree(const T &element, BinaryTree<T> &left, BinaryTree<T> &right) {
root = new BinaryTreeNode<T>(element, left.root, right.root);
left.root = right.root = 0;
}
/*将一个二叉树拆分成左子树和右子树两部分,根节点的值保存到element*/
template<class T>
void BinaryTree<T>::BreakTree(T &element, BinaryTree<T> &left, BinaryTree<T> &right) {
if (root == 0)
throw BadInput();
element = root->data;
left.root = root->leftChild;
right.root = root->rightChild;
delete root; //删除原来根节点的内存
root = 0;
}
/*求二叉树的高度*/
template<class T>
int BinaryTree<T>::height(BinaryTreeNode<T> *t) {
if (t == 0)
return 0;
int leftHeight = height(t->leftChild); //左子树的高度
int rightHeight = height(t->rightChild); //右子树的高度 //返回左右子树中的最大值加一
if (leftHeight > rightHeight)
return ++leftHeight;
else
return ++rightHeight;
}
4.MyException类
#pragma once
#pragma once
// exception classes for various error types #include<iostream>
#include <string> using namespace std; class NoMem {
public:
NoMem() {
this->message = "内存不足";
}
NoMem(string msg) {
this->message = msg;
}
void OutputMessage() {
cout << message << endl;
} private:
string message; };
class OutOfBounds {
public:
OutOfBounds() {
this->message = "输入超过了数组的界";
}
OutOfBounds(string msg) {
this->message = msg;
}
void OutputMessage() {
cout << message << endl;
} private:
string message; };
class BadInput {
public:
BadInput() {
this->message = "输入有误";
}
BadInput(string msg) {
this->message = msg;
}
void OutputMessage() {
cout << message << endl;
}
private:
string message;
};
数据结构算法及应用——二叉树的更多相关文章
- 数据结构算法集---C++语言实现
//数据结构算法集---C++语言实现 //各种类都使用模版设计,可以对各种数据类型操作(整形,字符,浮点) /////////////////////////// // // // 堆栈数据结构 s ...
- 数据结构+算法面试100题~~~摘自CSDN
数据结构+算法面试100题~~~摘自CSDN,作者July 1.把二元查找树转变成排序的双向链表(树) 题目:输入一棵二元查找树,将该二元查找树转换成一个排序的双向链表.要求不能创建任何新的结点,只调 ...
- 小小c#算法题 - 11 - 二叉树的构造及先序遍历、中序遍历、后序遍历
在上一篇文章 小小c#算法题 - 10 - 求树的深度中,用到了树的数据结构,树型结构是一类重要的非线性数据结构,树是以分支关系定义的层次结构,是n(n>=0)个结点的有限集.但在那篇文章中,只 ...
- C语言版数据结构算法
C语言版数据结构算法 C语言数据结构具体算法 https://pan.baidu.com/s/19oLoEVqV1I4UxW7D7SlwnQ C语言数据结构演示软件 https://pan.baidu ...
- 【数据结构与算法】多种语言(VB、C、C#、JavaScript)系列数据结构算法经典案例教程合集目录
目录 1. 专栏简介 2. 专栏地址 3. 专栏目录 1. 专栏简介 2. 专栏地址 「 刘一哥与GIS的故事 」之<数据结构与算法> 3. 专栏目录 [经典回放]多种语言系列数据结构算法 ...
- 初转java随感(一)程序=数据结构+算法
大学刚学编程的时候,有一句很经典的话程序=数据结构+算法 今天有了进一步认识. 场景: 1.当前局面 (1)有现成的封装好的分页组件 返回结果是page.类型为:Page.包括 page 分页信息,d ...
- python数据结构之树和二叉树(先序遍历、中序遍历和后序遍历)
python数据结构之树和二叉树(先序遍历.中序遍历和后序遍历) 树 树是\(n\)(\(n\ge 0\))个结点的有限集.在任意一棵非空树中,有且只有一个根结点. 二叉树是有限个元素的集合,该集合或 ...
- day40 数据结构-算法(二)
什么是数据结构? 简单来说,数据结构就是设计数据以何种方式组织并存储在计算机中. 比如:列表.集合与字典等都是一种数据结构. N.Wirth: “程序=数据结构+算法” 列表 列表:在其他编程语言中称 ...
- 前端要不要学数据结构&算法
我们都知道前端开发工程师更多偏向 DOM 渲染和 DOM 交互操作,随之 Node 的推广前端工程师也可以完成服务端开发.对于服务端开发而言大家都觉得数据结构和算法是基础,非学不可.所以正在进行 No ...
随机推荐
- 分页搜索查询sql
select * from (select t.*,rownum no from " + table + " t where scbj=0)where (no>(" ...
- QTP描述性编程中往WebEdit控件输入文字问题
在网上查找到许多相关的描述性编程的案例,自己就想动手一试,于是在专家视图中输入如下代码: systemUtil.Run "http://www.baidu.com" wait(15 ...
- Cocos2d-x 3.0 场景切换
场景切换要用到导演类Director,一般有两种方式,大多数是用替换场景(replaceScene),也可以用进栈(pushScene)出栈(popScene)的方式进行场景的替换. 场景切换代码: ...
- keil中查看内存数据
1.工具栏中 view->Memory Windows 然后 c:0 表示读取0地址开始的代码区数据 d:0 表示读取0地址开始的数据区数据 x:0表示读取0地址开始的外部数据区
- hdu5353 Average(模拟)
转载请注明出处: http://www.cnblogs.com/fraud/ ——by fraud Average Time Limit: 4000/2000 MS (Java/Ot ...
- Mahout快速入门教程
Mahout 是一个很强大的数据挖掘工具,是一个分布式机器学习算法的集合,包括:被称为Taste的分布式协同过滤的实现.分类.聚类等.Mahout最大的优点就是基于hadoop实现,把很多以前运行于单 ...
- IE CSS Bug 系列
1.[IE CSS Bug系列]IE6&IE7图片链接无效 <!doctype html> <html> <head> <meta charset=& ...
- 一键分享到新浪微博、腾讯微博、搜狐微博、人人网、开心网、百度收藏等js代码大全
下面给大家一些分享的js代码,只要把代码插入自己的网页中稍微修改一下图片路径就可以用了,好了,废话少说,上代码: document.writeln("<b>喜欢本文,那就分享到 ...
- 深入理解Azure自动扩展集VMSS(2)
VMSS中Auto Scale基本原理及诊断 在前面的介绍中,我们看到通过定义规则可以实现虚拟机扩展集的auto scale,那么在后台执行上VMSS的扩展依赖于哪些组件,出现问题(比如自动扩展没有发 ...
- Swift UI
概述 Apple近日发布了Swift编程语言,Swift是供iOS和OS X应用编程的新编程语言.相信很多开发者都在学习这门新语言. 废话不多说,下面我就来学习使用Swift创建一个简单的UI应用 ...