java 树 中序遍历_树的中序遍历(递归和非递归java实现)

树的中序遍历(递归和非递归实现)

树的基本遍历是解决树相关问题的基础,所以要很熟悉,理解透彻!

二叉树的结点定义:

class BinaryTree{

public int value;

public BinaryTree leftNode;

public BinaryTree rightNode;

BinaryTree(int x) { value = x; }

}

中序遍历的递归实现代码:【访问次序:左根右】

void InOrder(BinaryTree root){

if(root !=null){

InOrder(root.left);

System.out.println(root.value);

InOrder(root.right);

}

}

中序遍历的非递归算法【java实现】:

package com.mytest.mymain;

import java.util.Stack;

class BTree{

public int value; //public static int value; 那么最终输出都为8个8

public BTree left;

public BTree right;

BTree(int x) { value = x; }

}

public class PreOrderwithStack {

public static void main(String[] args) {

BTree root=new BTree(1);

BTree Node2=new BTree(2);

BTree Node3=new BTree(3);

BTree Node4=new BTree(4);

BTree Node5=new BTree(5);

BTree Node6=new BTree(6);

BTree Node7=new BTree(7);

BTree Node8=new BTree(8);

root.left=Node2;

root.right=Node3;

Node2.left=Node4;

Node2.right=Node5;

Node3.left=Node6;

Node3.right=Node7;

Node4.left=Node8;

preorderfun(root);

System.out.println();

inorderfun(root);

}

public static void inorderfun(BTree root){

Stack stack =new Stack();

BTree bTree=null;

if(root!=null){

bTree=root;

while(!stack.isEmpty() || bTree!=null){

while(bTree!=null){//处理所有左结点,进栈

stack.push(bTree);

bTree=bTree.left;

}

if(!stack.isEmpty()){//执行到这里,栈顶元素没有左孩子或者左子树都被访问过

bTree=stack.pop();

System.out.print(bTree.value+" ");

bTree=bTree.right;

}

}

}

}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值