44. 二叉树的前序遍历
题目
给定一个二叉树,返回它的 前序 遍历。1
2
3
4
5
6
7
8
9
10示例:
输入: [1,null,2,3]
1
\
2
/
3
输出: [1,2,3]
进阶: 递归算法很简单,你可以通过迭代算法完成吗?
方法
方法1:递归
1 | # Definition for a binary tree node. |
1 | # Definition for a binary tree node. |
方法2:迭代
1 | # Definition for a binary tree node. |
1 | # Definition for a binary tree node. |
1 | # Definition for a binary tree node. |
1 | # Definition for a binary tree node. |