144. Binary Tree Preorder Traversal
问题
Given the root of a binary tree, return the preorder traversal of its nodes’ values.
先序遍历。
先将当前节点加入数组。
然后递归左子节点。
最后递归右子节点。
1 | /** |
144. Binary Tree Preorder Traversal
https://xuanhe95.github.io/2022/04/12/144-Binary-Tree-Preorder-Traversal/