二叉树的遍历方式,中软国际Java笔试题和答案

中序遍历就是先遍历左再遍历根,最后遍历右 左根右

leetcode 94题

递归实现:

public List inorderTraversal(TreeNode root) {

List list=new ArrayList<>();

inorder(root,list);

return list;

}

public void inorder(TreeNode root,List list){

if(root==null){

return ;

}

inorder(root.left,list);

list.add(root.val);

inorder(root.right,list);

}

迭代实现

利用栈来实现,二叉树的中序遍历,由于中序遍历是左根右,先定义节点找到最左节点入栈,之后出栈,判断该节点是否有右孩子

public List inorderTraversal(TreeNode root) {

//迭代实现

List list =new LinkedList<>();

Stack stack=new Stack<>();

TreeNode cur=root;

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

//先找到左节点

while(cur!=null){

stack.push(cur);

cur=cur.left;

}

TreeNode node=stack.pop();

list.add(node.val);

if(node.right!=null){

cur=node.right;

}

}

return list;

}

三、后序遍历(递归和非递归)

================================================================

《一线大厂Java面试题解析+后端开发学习笔记+最新架构讲解视频+实战项目源码讲义》

【docs.qq.com/doc/DSmxTbFJ1cmN1R2dB】 完整内容开源分享

=================

后序遍历就是左右根

leetcode 145

递归实现:

public List postorderTraversal(TreeNode root) {

List list=new ArrayList<>();

postorder(root,list);

return list;

}

public void postorder(TreeNode root,List list){

if(root==null){

return ;

}

postorder(root.left,list);

postorder(root.right,list);

list.add(root.val);

}

非递归实现:

用两个栈来实现二叉树的后序遍历

第一个栈先放入根节点,之后弹出放入第二个节点,之后第一个栈放入左右孩子,之后再弹出放入第二个栈,即可实现

public List postorderTraversal(TreeNode root) {

//利用双栈实现后序遍历

Stack s1=new Stack<>();

Stack s2=new Stack<>();

List list=new LinkedList<>();

if(root==null) return list;

s1.push(root);

while(!s1.isEmpty()){

TreeNode node=s1.pop();

s2.push(node);

if(node.left!=null) s1.push(node.left);

if(node.right!=null) s1.push(node.right);

}

while(!s2.isEmpty()){

TreeNode cur=s2.pop();

list.add(cur.val);

}

return list;

}

四、层序遍历

=========================================================================

用队列实现层序遍历

leetcode 102题

public List<List> levelOrder(TreeNode root) {

//用队列实现层序遍历

//第一层节点先进队列,出的节点带下一层的节点

List <List> list=new ArrayList<>();

if(root==null) return list;

Queue queue=new LinkedList<>();

queue.offer(root);

while(!queue.isEmpty()){

List list1=new ArrayList<>();

int size=queue.size();

while(size!=0){

TreeNode cur=queue.poll();

list1.add(cur.val);

if(cur.left!=null){

queue.offer(cur.left);

}

if(cur.right!=null){

queue.offer(cur.right);

}

size–;

}

list.add(list1);

}

return list;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值