实现二叉树先序,中序和后序遍历(递归方法实现)

public class Solution { /** * * @param root TreeNode类 the root of binary tree * @return int整型二维数组 */ public int[][] threeOrders (TreeNode root) { List list1=new ArrayList<>(); List list2=new ArrayList<>(); List list3=new ArrayList<>(); preOrder(root,list1); inOrder(root,list2); postOrder(root,list3); int[][] array=new int[3][list1.size()]; for(int a=0;a实现二叉树先序,中序和后序遍历(递归方法实现)最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/18850.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>