遍历说明?
前中后序遍历
代码实现?
package tree;
public class BinaryTreeDemo {
public static void main(String[] args) {
//创建一颗二叉树
BinaryTree binaryTree = new BinaryTree();
//创建需要的结点
HeroNode root = new HeroNode(1, "宋江");
HeroNode node2 = new HeroNode(2, "吴用");
HeroNode node3 = new HeroNode(3, "卢俊义");
HeroNode node4 = new HeroNode(4, "林冲");
//说明 我们手动创建该二叉树,后面我们学习递归的方式创建二叉树
root.setLeft(node2);
root.setRight(node3);
node3.setRight(node4);
binaryTree.setRoot(root);
//测试
System.out.println("前序遍历"); //1 2 3 4
binaryTree.preOrder();
//测试
System.out.println("中序遍历"); //2 1 3 4
binaryTree.infixOrder();
//测试
System.out.println("后序遍历"); //2 4 3 1
binaryTree.postOrder();
}
}
// 定义一个二叉树 BinaryTree
class BinaryTree {
private HeroNode root;
public void setRoot(HeroNode root) {
this.root = root;
}
// 前序遍历
public void preOrder(){
if(this.root != null){
root.preOrder();
}else {
System.out.println("二叉树为空 无法遍历");
}
}
// 中序遍历
public void infixOrder(){
if(this.root != null){
root.infixOrder();
}else {
System.out.println("二叉树为空 无法遍历");
}
}
// 前序遍历
public void postOrder(){
if(this.root != null){
root.postOrder();
}else {
System.out.println("二叉树为空 无法遍历");
}
}
}
//先创建HeroNode 结点
class HeroNode {
private int no;
private String name;
private HeroNode left; // 左子树
private HeroNode right; // 右子树
@Override
public String toString() {
return "HeroNode{" +
"no=" + no +
", name='" + name + '\'' +
'}';
}
public HeroNode(int no, String name) {
this.no = no;
this.name = name;
}
public int getNo() {
return no;
}
public void setNo(int no) {
this.no = no;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public HeroNode getLeft() {
return left;
}
public void setLeft(HeroNode left) {
this.left = left;
}
public HeroNode getRight() {
return right;
}
public void setRight(HeroNode right) {
this.right = right;
}
// 前序遍历的方法
public void preOrder() {
System.out.println(this); //先输出父节点
// 递归遍历左子树
if (this.left != null){
this.left.preOrder();
}
// 递归遍历右子树
if (this.right != null){
this.right.preOrder();
}
}
// 中序遍历的方法
public void infixOrder() {
// 递归遍历左子树
if (this.left != null){
this.left.infixOrder();
}
System.out.println(this); //输出父节点
// 递归遍历右子树
if (this.right != null){
this.right.infixOrder();
}
}
// 后序遍历的方法
public void postOrder() {
// 递归遍历左子树
if (this.left != null){
this.left.postOrder();
}
// 递归遍历右子树
if (this.right != null){
this.right.postOrder();
}
System.out.println(this); //输出父节点
}
}
输出:
?
|