✏️✏️✏️今天给大家分享一下二叉树的基本概念以及性质、二叉树的自定义实现,二叉树的遍历等。
😛😛😛希望我的文章能对你有所帮助,有不足的地方还请各位看官多多指教,大家一起学习交流!
动动你们发财的小手,点点关注点点赞!在此谢过啦!哈哈哈!😛😛😛
✏️✏️✏️如果觉得我分享和内容还不错的话,可以给我一个小小的赞吗?
好,废话不多说,我们直接进入正题!!!
目录
一、树形结构
1.1 概念
- 有一个特殊的结点,称为根结点,根结点没有前驱结点
- 除根结点外,其余结点被分成M(M > 0)个互不相交的集合T1、T2、......、Tm,其中每一个集合Ti (1 <= i <= m) 又是一棵与树类似的子树。每棵子树的根结点有且只有一个前驱,可以有0个或多个后继
- 树是递归定义的。
注意:树形结构中,子树之间不能有交集,否则就不是树形结构
1.2 关于树的一些概念术语
1.3 树的表示形式
class Node {
int value; // 树中存储的数据
Node firstChild; // 第一个孩子引用
Node nextBrother; // 下一个兄弟引用
}
1.4 树的应用
二、二叉树
2.1 概念
- 二叉树不存在度大于2的结点
- 二叉树的子树有左右之分,次序不能颠倒,因此二叉树是有序树
2.2 两种特殊的二叉树
完全二叉树: 完全二叉树是效率很高的数据结构,完全二叉树是由满二叉树而引出来的。对于深度为K的,有n个结点的二叉树,当且仅当其每一个结点都与深度为K的满二叉树中编号从0至n-1的结点一 一对应时称之为完全二叉树。 要注意的是满二叉树是一种特殊的完全二叉树。
2.3 二叉树的重要性质
5.对于具有n个结点的完全二叉树,如果按照从上至下从左至右的顺序对所有节点从0开始编号,则对于序号为i的结点有:
- 若i>0,双亲序号:(i-1)/2;i=0,i为根结点编号,无双亲结点
- 若2i+1<n,左孩子序号:2i+1,否则无左孩子
- 若2i+2<n,右孩子序号:2i+2,否则无右孩子
2.4 二叉树的存储
// 孩子表示法
class Node {
int val; // 数据域
Node left; // 左孩子的引用,常常代表左孩子为根的整棵左子树
Node right; // 右孩子的引用,常常代表右孩子为根的整棵右子树
}
// 孩子双亲表示法
class Node {
int val; // 数据域
Node left; // 左孩子的引用,常常代表左孩子为根的整棵左子树
Node right; // 右孩子的引用,常常代表右孩子为根的整棵右子树
Node parent; // 当前节点的根节点
}
2.5 二叉树的基本操作
2.5.1 二叉树的类定义
public class BinaryTree {
static public class TreeNode{
public char val;
public TreeNode left;
public TreeNode right;
public TreeNode(char val){
this.val=val;
}
}
}
2.5.2 二叉树的创建
二叉树是递归定义的,因此可以通过递归来创建一颗二叉树,也可以通过穷举法来创建。我们先通过穷举法来创建,后续我会给大家分享递归创建二叉树。
public TreeNode CreatBinaryTree(){
TreeNode A=new TreeNode('A');
TreeNode B=new TreeNode('B');
TreeNode C=new TreeNode('C');
TreeNode D=new TreeNode('D');
TreeNode E=new TreeNode('E');
TreeNode F=new TreeNode('F');
TreeNode G=new TreeNode('G');
TreeNode H=new TreeNode('H');
A.left=B;
A.right=C;
B.left=D;
B.right=E;
C.left=F;
C.right=G;
D.left=H;
return A;
}
通过上面的穷举法,我们就创建了下面这样一棵二叉树:
2.5.3 二叉树的前序遍历
递归遍历:
public void preOrder(TreeNode root){
if(root==null){
return;
}
System.out.print(root.val+" ");
preOrder(root.left);
preOrder(root.right);
}
非递归遍历:
public void preOrderNor(TreeNode root){
Stack<TreeNode> stack=new Stack<>();
TreeNode cur=root;
while(cur!=null || !stack.empty()){
while(cur!=null){
System.out.print(cur.val+" ");
stack.push(cur);
cur=cur.left;
}
TreeNode top = stack.pop();
cur=top.right;
}
}
2.5.4 二叉树的中序遍历
递归遍历:
public void inOrder(TreeNode root){
if(root==null){
return;
}
inOrder(root.left);
System.out.print(root.val+" ");
inOrder(root.right);
}
非递归遍历:
public void inOrderNor(TreeNode root){
Stack<TreeNode> stack=new Stack<>();
TreeNode cur=root;
while(cur!=null || !stack.empty()){
while(cur!=null){
stack.push(cur);
cur=cur.left;
}
TreeNode top=stack.pop();
System.out.print(top.val+" ");
cur=top.right;
}
}
2.5.5 二叉树的后序遍历
递归遍历:
public void postOrder(TreeNode root){
if(root==null){
return;
}
postOrder(root.left);
postOrder(root.right);
System.out.print(root.val+" ");
}
非递归遍历:
public void postOrderNor(TreeNode root){
Stack<TreeNode> stack=new Stack<>();
TreeNode cur=root;
TreeNode prev=null;
while(cur!=null || !stack.empty()){
while(cur!=null){
stack.push(cur);
cur=cur.left;
}
TreeNode top=stack.peek();
if(top.right==null || top.right==prev){
System.out.print(top.val+" ");
stack.pop();
prev=top;//记录最新被打印的节点
}else{
cur=top.right;
}
}
}
2.5.6 获取树中节点个数
public int size(TreeNode root){
if(root==null){
return 0;
}
return size(root.left)+size(root.right)+1;
}
2.5.7 获取叶子节点个数
public int getLeafNodeCount(TreeNode root){
if(root==null){
return 0;
}
if(root.left==null && root.right==null){
return 1;
}
return getLeafNodeCount(root.left)+getLeafNodeCount(root.right);
}
2.5.8 获取第K层节点个数
public int getKLevelNodeCount(TreeNode root,int k){
if(root==null){
return 0;
}
if(k==1){
return 1;
}
return getKLevelNodeCount(root.left,k-1)+getKLevelNodeCount(root.right,k-1);
}
2.5.9 获取二叉树的高度
public int getHeight(TreeNode root){
if(root==null){
return 0;
}
/* if(root.left==null && root.right==null){
return 1;
}*/
int leftHeight=getHeight(root.left);
int rightHeight=getHeight(root.right);
return leftHeight > rightHeight ? leftHeight+1:rightHeight+1;
}
2.5.10 查找二叉树中是否存在值为val的节点
TreeNode find(TreeNode root, char val){
if(root==null){
return null;
}
if(root.val==val){
return root;
}
TreeNode ret1=find(root.left,val);
if(ret1!=null){
return ret1;
}
TreeNode ret2=find(root.right,val);
if(ret2!=null){
return ret2;
}
return null;
}
✨希望各位看官读完文章后,能够有所提升。
🎉好啦,今天的分享就到这里!!
✨创作不易,还希望各位大佬支持一下!
👍点赞,你的认可是我创作的动力!
⭐收藏,你的青睐是我努力的方向!
✏️评论:你的意见是我进步的财富!