题解 | #二叉树的前序遍历#
题目链接: https://www.nowcoder.com/practice/5e2135f4d2b14eb8a5b06fab4c938635 思路讲解: 1)二叉树的遍历 dfs 非常不错 2)存储 选择list 便于添加 3)转存 返回数组 直接存进去就行
import java.util.*;
/*
* public class TreeNode {
* int val = 0;
* TreeNode left = null;
* TreeNode right = null;
* public TreeNode(int val) {
* this.val = val;
* }
* }
*/
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return int整型一维数组
*/
public int[] preorderTraversal (TreeNode root) {
// write code here
//二叉树遍历 dfs
List<Integer> list = new ArrayList<>();
//遍历 递归
dfs(list,root);
//转存
int[] arr = new int[list.size()];
for(int i=0;i<arr.length;i++){
arr[i] = list.get(i);
}
return arr;
}
public void dfs(List<Integer> list,TreeNode root){
if(root!=null){
list.add(root.val);
dfs(list,root.left);
dfs(list,root.right);
}
}
}
注意:坚持每天刷一题!!!