-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo114_Tree.cs
96 lines (93 loc) · 3.47 KB
/
No114_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
using LeetCode.ExtensionFunction;
using System;
using System.Collections.Generic;
using System.Text;
namespace LeetCode_114
{
//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, 5, 3, 4, null, 6 };
// 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, -2, 3 };
// //int[] nums2 = new int[] { 10, 15, 20 };
// //string input = "adceb";
// //string input2 = "*a*b";
// //var res = solution.IsMatch(input, input2);
// //ConsoleX.WriteLine(res);
// solution.Flatten(tree);
// }
//}
public class Solution
{
/// <summary>
/// 运用了迭代中序遍历的代码,先把节点都入队,然后串联成目标树就可以了
/// 时间复杂度:O(n)
/// 空间复杂度:O(n)
/// </summary>
/// <param name="root"></param>
public void Flatten(TreeNode root)
{
Queue<TreeNode> queue = new Queue<TreeNode>();
Stack<TreeNode> stack = new Stack<TreeNode>();
TreeNode curr = root;
while (curr != null || stack.Count > 0)
{
while (curr != null)
{
queue.Enqueue(curr);
stack.Push(curr);
curr = curr.left;
}
curr = stack.Pop();
curr = curr.right;
}
if (queue.Count != 0)
root = queue.Dequeue();
while (queue.Count != 0)
{
//这里有一点要注意的,一定要用root.right去串联,如果用root去串联的话,其实只是变量指向的空间而已,并没有串起来
root.right = queue.Dequeue();
root.left = null;
root = root.right;
}
}
/// <summary>
/// 类似莫里斯遍历的方法,通过直接改变树结构的方式完成
/// 时间复杂度:O(n)
/// 空间复杂度:O(1)
/// </summary>
/// <param name="root"></param>
//public void Flatten(TreeNode root)
//{
// TreeNode curr = root;
// while (curr != null)
// {
// if (curr.left != null)
// {
// TreeNode next = curr.left;
// TreeNode predecessor = next;
// while (predecessor.right != null)
// {
// predecessor = predecessor.right;
// }
// predecessor.right = curr.right;
// curr.left = null;
// curr.right = next;
// }
// curr = curr.right;
// }
//}
}
}