-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelper.cpp
157 lines (135 loc) · 3.31 KB
/
Helper.cpp
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
* Copyright (c) luckystone60 Technologies Co., Ltd. 2012-2018. All right reserved.
* Description: Helper.cpp
* Author:luckystone60
* Create:2020-03-01
*/
#include "Helper.h"
using namespace LEETCODE::HELPER;
ListNode *LEETCODE::HELPER::CreateListImpl(const std::vector<int> &vec)
{
size_t count = vec.size();
ListNode *head, *curr;
if (count == 0) {
return nullptr;
}
head = new ListNode(vec[0]);
curr = head;
for (size_t i = 1; i < count; i++) {
ListNode *temp = new ListNode(vec[i]);
curr->next = temp;
curr = temp;
}
return head;
}
ListNode *LEETCODE::HELPER::CreateList(const std::string &inputStr)
{
auto vec = CreateVector<int>(inputStr);
return CreateListImpl(vec);
}
void LEETCODE::HELPER::DestroyList(ListNode *head)
{
ListNode *curr = head;
ListNode *temp = NULL;
while (curr != NULL) {
temp = curr;
curr = curr->next;
delete temp;
}
}
TreeNode *LEETCODE::HELPER::CreateTreeImpl(const std::vector<int> &vec)
{
size_t count = vec.size();
TreeNode **treeArr = new TreeNode*[count];
for (size_t i = 0; i < count; i++)
{
if (TREE_NODE_BOUNDNARY == vec[i]) {
treeArr[i] = nullptr;
} else {
treeArr[i] = new TreeNode(vec[i]);
}
}
size_t curr = 1;
for (size_t i = 0; i<count; i++)
{
if( !treeArr[i] ) {
continue;
}
if (curr < count) {
treeArr[i]->left = treeArr[curr++];
}
if (curr < count) {
treeArr[i]->right = treeArr[curr++];
}
}
TreeNode *root = treeArr[0];
delete[] treeArr;
return root;
}
TreeNode *LEETCODE::HELPER::CreateTree(const std::string &input)
{
auto root = CreateTreeImpl(CreateVector<int>(input));
return root;
}
void LEETCODE::HELPER::DestroyTree(TreeNode *root)
{
if (nullptr == root) {
return;
}
DestroyTree(root->left);
DestroyTree(root->right);
delete root;
}
std::vector<int> LEETCODE::HELPER::TransListToVector(ListNode *head)
{
std::vector<int> ret;
ListNode *node = head;
while (node) {
ret.push_back(node->val);
node = node->next;
}
return ret;
}
void LEETCODE::HELPER::PrintList(ListNode *head)
{
auto vec = TransListToVector(head);
PrintVector(vec, "PrintList");
}
void LEETCODE::HELPER::PrintTreeImpl(TreeNode* n, bool left, std::string const& indent)
{
if (n->right)
{
PrintTreeImpl(n->right, false, indent + (left ? "| " : " "));
}
std::cout << indent;
std::cout << (left ? '\\' : '/');
std::cout << "-----";
std::cout << n->val << std::endl;
if (n->left)
{
PrintTreeImpl(n->left, true, indent + (left ? " " : "| "));
}
}
void LEETCODE::HELPER::PrintTree(TreeNode* root)
{
if (root->right) {
PrintTreeImpl(root->right, false, " ");
}
std::cout << root->val << std::endl;
if (root->left) {
PrintTreeImpl(root->left, true, " ");
}
}
TreeNode *LEETCODE::HELPER::GetSpecifiedValueNode(TreeNode *root, int32_t value)
{
if (root == nullptr) {
return nullptr;
}
if (root->val == value) {
return root;
} else if (root->val < value) {
return GetSpecifiedValueNode(root->right, value);
} else {
return GetSpecifiedValueNode(root->left, value);
}
}