牛客4913417
牛客4913417
全部文章
分类
题解(36)
归档
标签
去牛客网
登录
/
注册
牛客4913417的博客
全部文章
(共1篇)
二叉树先序,中序,后序(递归,非递归)
第一种递归: public int[][] threeOrders (TreeNode root) { // write code here List<Integer> preList=new ArrayList<>(); Li...
递归
非递归
中序
后序
先序
2021-01-27
0
451