-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo144_Tree.cs
97 lines (92 loc) · 3.37 KB
/
No144_Tree.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
using LeetCode.ExtensionFunction;
using System;
using System.Collections.Generic;
using System.Text;
namespace LeetCode_144
{
//static void Main(string[] args)
//{
// var solution = new Solution();
// while (true)
// {
// //int input = int.Parse(Console.ReadLine());
// //int input2 = int.Parse(Console.ReadLine());
// //string input = Console.ReadLine();
// //string input2 = Console.ReadLine();
// //int[] intArr = input.Split(',').Select(s => int.Parse(s)).ToArray();
// //int input2 = int.Parse(Console.ReadLine());
// var builder = new DataStructureBuilder();
// int?[] data = new int?[] { 1, 2, 3, 4, 5, null, 6, null, null, 7, 8 };
// var tree = builder.BuildTree(data);
// //var listNode = builder.BuildListNode(new int[] { 1, 4, 5 });
// //int[][] arr = new int[3][] { new int[] { 1, 3, 1 }, new int[] { 1, 5, 1 }, new int[] { 4, 2, 1 } };
// //int[] nums1 = new int[] { 2, 1, 7, 5, 6, 4, 3 };
// //int[] nums1 = new int[] { 2, 1, 1, 5, 11, 5, 1, 7, 5, 6, 4, 3 };
// //int[] nums2 = new int[] { 10, 15, 20 };
// //string input = "adceb";
// //string input2 = "*a*b";
// var res = solution.PreorderTraversal(tree);
// ConsoleX.WriteLine(res);
// }
//}
public class Solution
{
/// <summary>
/// 先序遍历(根左右)
/// </summary>
/// <param name="tree"></param>
/// <returns></returns>
public int[] PreorderTraversal(TreeNode tree)
{
if (tree == null)
return new int[0];
List<int> res = new List<int>();
//Recurse(tree, res);
//return res.ToArray();
return Iterate(tree).ToArray();
}
/// <summary>
/// 递归实现
/// 时间复杂度:O(n)
/// 空间复杂度:O(logn)。最差跌落到 O(n),既一条链的树的情况下
/// </summary>
/// <param name="tree"></param>
/// <param name="res"></param>
private void Recurse(TreeNode tree, List<int> res)
{
//存入根节点
res.Add(tree.val);
//递归左子树
if (tree.left != null)
Recurse(tree.left, res);
if (tree.right != null)
Recurse(tree.right, res);
}
/// <summary>
/// 迭代实现
/// 时间复杂度:O(n)
/// 空间复杂度:O(logn),最差 O(n)
/// </summary>
/// <param name="tree"></param>
/// <returns></returns>
private List<int> Iterate(TreeNode tree)
{
List<int> res = new List<int>();
Stack<TreeNode> stack = new Stack<TreeNode>();
if (tree != null)
stack.Push(tree);
while (stack.Count > 0)
{
var cur = stack.Pop();
//把根节点加入到结果
res.Add(cur.val);
//先加入右子树,再加入左子树,这样就可以保证遍历顺序是左然后再是右
if (cur.right != null)
stack.Push(cur.right);
if (cur.left != null)
stack.Push(cur.left);
}
return res;
}
}
}