Binary Trees
1. Definiation
What is Binary Trees?
Collection of node (n>=0) and in which no node can have more than two children.
或为空集,或为有一个根节点和两棵互不相交的二叉树组成
左子树与右子树是有顺序的,不能颠倒
即使是只有一颗子树也要分清是左子树还是右子树
2. property
(1) 若二叉树的层次从1开始,则在二叉树的第i 层最多有2^(i-1)个结点;
(2)高度为k 的二叉树最多有2^k-1个结点;
(3)对任一棵二叉树,如果其叶结点个数为n0,度为2的非叶结点个数为n2,则有 n0=n2+1;
(4)具有n个结点的完全二叉树的高度为[logn]+1
(5)
3. 特殊的二叉树
(1)斜树
一波流,要么往左斜,要么往右斜

(2)满二叉树
一颗深度为k且有2^k-1个节点

叶子只能出现在最后一层
(3)完全二叉树
对一颗有n个节点的二叉树编号,如果编号为i的节点与满二叉树的节点编号相同,则这棵树称为完全二叉树

最下层叶子节点一定集中在左部连续
if倒数第二层有叶子节点,则一定在右部连续。
if结点度为一,则一定只有左孩子
同样结点的二叉树,完全二叉树深度是最小的
满二叉树一定是完全二叉树
4、二叉树的储存结构
(1)顺序储存二叉树
完全二叉树
层序遍历,可以用数组表示逻辑结构

一般二叉树
不存在的结点就用^表示
但如果是斜树呢?

显然浪费太多的空间
要考虑用链式存储结构
(2)链式储存二叉树
二叉树最多有两个孩子,设计一个数据域和两个指针域,叫做二叉链表

template<typename Object>
struct bitTree
{
Object data;
bitTree<Object>*lchild, rchild;
};

5、遍历
What is 遍历?
二叉树的遍历(traversing binary tree)从根结点出发,按照某种次序依次访问二叉树中所有结点,使得每个结点有且只被访问一次。
前序遍历:
若二叉树为空,则空操作返回,否则先访问根结点,然后前序遍历左子树,再前序遍历右子树。

中序遍历
若树为空,则空操作返回,否则从根结点开始(注并不是先访问根结点),中序遍历根结点的左子树,然后访问根结点,最后中序遍历右子树

后序遍历
若树为空,则空操作返回,否则从左到右线叶子后结点的方式遍历访问左右子树,最后访问根结点

层序遍历
一层一层遍历
6、二叉树的建立与遍历算法
//建立二叉树,并输出每个字符所在层数
#include<iostream>
using namespace std; typedef struct BitNode
{
char data;
struct BitNode *lchild, *rchild;
}BitNode, *BitTree; //创建一棵二叉树,约定用户遵照前序遍历的方式遍历
void CreateBitTree(BitTree *T)
{
char c;
cin>>c; if(c=='-')
{
*T=NULL;
}
else
{
*T=new BitNode();
(*T)->data=c;
CreateBitTree(&((*T)->lchild));
CreateBitTree(&(*T)->rchild));
} } //访问二叉树结点的具体操作
void visit(char data, int level)
{
cout<<data<<" in "<< level << endl;
} //前序遍历二叉树
void PreOrderTraversal(BitTree T, int level)
{
if(T)
{
visit(T->data,level);
PreOrderTraversal(T->lchild,level+1);
PreOrderTraversal(T->rchild,level+1);
}
} //后续遍历删除二叉树
void PostOrderTracersalDelete(BitTree T)
{
if(T)
{
PostOrderTracersalDelete(T->lchild);
PostOrderTracersalDelete(T->rchild);
delete T;
}
} void play(char data)
{
cout<<"haha,MidOrderTraversal "<<data<<endl;
} //中序遍历二叉树
void MidOrderTraversal(BitTree T)
{
if(T)
{
MidOrderTraversal(T->lchild);
play(T->data);
MidOrderTraversal(T->rchild);
}
} int main()
{
int level=1;
BitTree T=NULL; CreateBitTree(&T); //We have to pass the reference
PreOrderTraversal(T,level);
MidOrderTraversal(T);
PostOrderTracersalDelete(T); return 0;
}
Binary Trees的更多相关文章
- hdu3240 Counting Binary Trees
Counting Binary Trees Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Other ...
- [leetcode-617-Merge Two Binary Trees]
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of t ...
- Merge Two Binary Trees
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of t ...
- [LeetCode] Merge Two Binary Trees 合并二叉树
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of t ...
- [Swift]LeetCode617. 合并二叉树 | Merge Two Binary Trees
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of t ...
- [Swift]LeetCode823. 带因子的二叉树 | Binary Trees With Factors
Given an array of unique integers, each integer is strictly greater than 1. We make a binary tree us ...
- [Swift]LeetCode894. 所有可能的满二叉树 | All Possible Full Binary Trees
A full binary tree is a binary tree where each node has exactly 0 or 2 children. Return a list of al ...
- [Swift]LeetCode951. 翻转等价二叉树 | Flip Equivalent Binary Trees
For a binary tree T, we can define a flip operation as follows: choose any node, and swap the left a ...
- [LeetCode] Binary Trees With Factors 带因子的二叉树
Given an array of unique integers, each integer is strictly greater than 1. We make a binary tree us ...
随机推荐
- tomcat部署war包时连接被重置(修改tomcat上传限制)
相对目录:apache-tomcat-7.0.67/webapps/manager/WEB-INF/web.xml 500M的计算:500*1024*1024 <multipart-config ...
- cuda编程(一)
环境安装和例程运行 显卡主要有两家,ATI.NVIDIA,简称A卡和N卡.随着GPU计算能力的上升,采用GPU并行计算来加速的应用越来越多. Nvidia创立人之一,黄仁勋(Jen-Hsun Huan ...
- CodeForces 670B Game of Robots
简单题. #pragma comment(linker, "/STACK:1024000000,1024000000") #include<cstdio> #inclu ...
- c# 强制退出程序
引用:http://blog.csdn.net/tanhua103292/article/details/4283203 1.强制退出WinForm程序之Application.Exit和Enviro ...
- 在CentOS上安装第三方软件库EPEL
Extra Packages for Enterprise Linux (EPEL)[企业版 Linux 附加软件包(以下简称 EPEL)]是一个由特别兴趣小组创建.维护并管理的,针对 红帽企业版 L ...
- chd校内选拔赛题目+题解
题目链接 A. Currency System in Geraldion 有1时,所有大于等于1的数都可由1组成.没有1时,最小不幸的数就是1. #include<iostream> ...
- #数论-模运算#POJ 1150、1284、2115
1.POJ 1150 The Last Non-zero Digit #质因数分解+模运算分治# 先贴两份题解: http://www.hankcs.com/program/algorithm/poj ...
- 什么是Bash Shell的内建(build in)命令
1.什么是build in命令: shell内建命令是指bash(或其它版本)工具集中的命令.一般都会有一个与之同名的系统命令,比如bash中的echo命令与/bin/echo是两个不同的命令,尽管他 ...
- Java基础第二章
- EFI安装Win7
安装系统之前电脑里最好没有其他系统,安装过程中电脑需重启多次,其他系统会引导电脑开机,无法完成WIN7安装. 一.制作安装分区 1.首先在移动硬盘(U盘)准备一个FAT32分区 一定要FAT32分区, ...