Given a binary tree, return the preorder traversal of its nodes' values.
Example :
Input: [1,null,2,3] 1 \ 2 / 3Output: [1,2,3]
Follow up: Recursive solution is trivial, could you do it iteratively?
先根遍历一颗树。
两种递归的实现方法,见代码。
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
Given a binary tree, return the preorder traversal of its nodes' values.
Example :
Input: [1,null,2,3] 1 \ 2 / 3Output: [1,2,3]
Follow up: Recursive solution is trivial, could you do it iteratively?
先根遍历一颗树。
两种递归的实现方法,见代码。