-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathPreOrderStack.cs
59 lines (51 loc) · 1.45 KB
/
PreOrderStack.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* ==============================================================================
* 功能描述:PreorderStack
* 创 建 者:gz
* 创建日期:2017/5/12 15:06:49
* ==============================================================================*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Windows.Forms.VisualStyles;
//Given a binary tree, return the inorder traversal of its nodes' values.
//For example:
//Given binary tree [1,null,2,3],
// 1
// \
// 2
// /
// 3
//return [1,3,2].
//Note: Recursive solution is trivial, could you do it iteratively?
namespace InorderTreeStackSln
{
/// <summary>
/// InorderStack
/// </summary>
public class PreorderStack
{
public IList<int> PreorderTraversal(TreeNode root)
{
IList<int> rtn = new List<int>();
if (root == null) return rtn;
Stack<TreeNode> s = new Stack<TreeNode>();
s.Push(root);
TreeNode tmp = root;
while (s.Count > 0)
{
if (tmp == null)
tmp = s.Peek();
rtn.Add(s.Peek().val);
s.Pop();
if(tmp.right!=null)
s.Push(tmp.right);
if (tmp.left != null)
s.Push(tmp.left);
tmp = tmp.left;
}
return rtn;
}
}
}