java先序遍历建树_Java实现二叉树的(根据一维数组)构建和先序中序后序遍历

Java实现二叉树

1. 定义结点类

public class TreeNode {

int val = 0;

TreeNode left = null;

TreeNode right = null;

public TreeNode(int val) {

this.val = val;

}

}

2. 构建二叉树

5bc5b1c91a0c964a37caa621eda61b33.png

public static TreeNode createBT(int[] arr, int i) // 初始时,传入的i==0

{

TreeNode root = null; // 定义根节点

if (i >= arr.length) // i >= arr.length 时,表示已经到达了根节点

return null;

root = new TreeNode(arr[i]); // 根节点

root.left = createBT(arr, 2*i+1); // 递归建立左孩子结点

root.right = createBT(arr, 2*i+2); // 递归建立右孩子结点

return root;

}

3. 遍历二叉树

3.1 先序遍历

// 先序遍历

public static void PreOrder(TreeNode root)

{

if (root == null)

return;

System.out.print(root.val+" ");

PreOrder(root.left);

PreOrder(root.right);

}

3.2 中序遍历

// 中序遍历

public static void InOrder(TreeNode root)

{

if (root == null)

return;

InOrder(root.left);

System.out.print(root.val+" ");

InOrder(root.right);

}

3.3 后序遍历

// 后序遍历

public static void PostOrder(TreeNode root)

{

if (root == null)

return;

PostOrder(root.left);

PostOrder(root.right);

System.out.print(root.val+" ");

}

4. 总代码

package com.BinaryTree;

// 定义(链式存储)二叉树结点

class TreeNode {

int val;

TreeNode left;

TreeNode right;

TreeNode(int x) { val = x; }

}

public class Main {

public static void main(String[] args) {

int[] arr = {1, 2, 3, 4, 5, 6};

TreeNode root = createBT(arr, 0);

System.out.println("先序遍历:");

PreOrder(root);

System.out.println("\n中序遍历:");

InOrder(root);

System.out.println("\n后序遍历:");

PostOrder(root);

}

// 使用一维数组建树(利用性质:在一维数组中, 第i个结点的左孩子结点是第2*i+1个结点, 第i个结点的右孩子结点是第2*i+2个结点)

public static TreeNode createBT(int[] arr, int i)

{

TreeNode root = null; // 定义根节点

if (i >= arr.length) // i >= arr.length 时,表示已经到达了根节点

return null;

root = new TreeNode(arr[i]); // 根节点

root.left = createBT(arr, 2*i+1); // 递归建立左孩子结点

root.right = createBT(arr, 2*i+2); // 递归建立右孩子结点

return root;

}

// 先序遍历

public static void PreOrder(TreeNode root)

{

if (root == null)

return;

System.out.print(root.val+" ");

PreOrder(root.left);

PreOrder(root.right);

}

// 中序遍历

public static void InOrder(TreeNode root)

{

if (root == null)

return;

InOrder(root.left);

System.out.print(root.val+" ");

InOrder(root.right);

}

// 后序遍历

public static void PostOrder(TreeNode root)

{

if (root == null)

return;

PostOrder(root.left);

PostOrder(root.right);

System.out.print(root.val+" ");

}

}

/* 运行结果:

先序遍历:

1 2 4 5 3 6

中序遍历:

4 2 5 1 6 3

后序遍历:

4 5 2 6 3 1

*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值