-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAVL.h
265 lines (222 loc) · 6.58 KB
/
AVL.h
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
#pragma once
#include <iostream>
#include <cstring>
#include <string>
#include <fstream>
#include <stdexcept> // std::runtime_error
#include <sstream>
#include "AVLutilities.h"
// This header file contains the code for AVL self balancing tree
class AVL
{
private:
char name[50];
struct AVLnode *root;
public:
AVL() = delete;
AVL(const char n[50]);
~AVL();
void AddData(std::string filename, int isHeading);
void insert(int key, int object);
void traverse(int mode);
void deleteKey(int key);
int search(int key);
void PrettyPrinting();
std::pair<AVL*, AVL* > splitAtRoot();
std::pair<AVL*, AVL*> splitAtKey(int key);
void setRoot(struct AVLnode *node);
};
AVL::AVL(const char n[50])
{
strcpy(name, n);
root = nullptr;
}
AVL::~AVL()
{
using namespace std;
releaseMemoryTree(root);
cout << "Memory Released of " << name << endl;
}
void AVL::insert(int key, int object){
root = insertObject(root, key, object);
}
int AVL::search(int key){
struct AVLnode* node = root;
while (node)
{
if (node->key == key)
{
return node->object;
}
else if(key < node->key){
node = node->left;
}
else{
node = node->right;
}
}
return 0;
}
void AVL::AddData(std::string filename, int isHeading = 1){
using namespace std;
// working with csv in CPP
// https://www.gormanalysis.com/blog/reading-and-writing-csv-files-with-cpp/
ifstream myFile(filename);
// if(!myFile.is_open()) throw runtime_error("Could not open file");
string line, word;
int val;
if (isHeading) getline(myFile, line);
// Read data, line by line
while(getline(myFile, line))
{
// Create a stringstream of the current line
stringstream ss(line);
pair<int, int> data;
// add the column data
// of a row to a pair
getline(ss, word, ',');
data.first = stoi(word);
getline(ss, word, ',');
data.second = stoi(word);
insert(data.first, data.second);
}
// Close file
myFile.close();
}
void AVL::traverse(int mode = 1){
using namespace std;
cout << "\n\nPrinting The AVL tree: " << name << endl;
cout << "===========================" << endl;
cout << "Key --> Value" << endl;
cout << "===========================" << endl;
if (mode == 0){
cout << "Preorder" << endl;
traversePreorder(root);
}
else if (mode == 1){
cout << "Inorder" << endl;
traverseInorder(root);
}
else if (mode == 2){
cout << "Postorder" << endl;
traversePostorder(root);
}
else{
cout << "Invalid Mode" << endl;
cout << "Inorder" << endl;
traverseInorder(root);
}
cout << "===========================\n" << endl;
}
void AVL::PrettyPrinting(){
std::cout << "---------------------------------" << std::endl;
std::cout << "\t" << name << std::endl;
std::cout << "---------------------------------" << std::endl;
printBT("", root, false);
}
void AVL::deleteKey(int key){
root = delete_node(root, key);
}
void AVL::setRoot(struct AVLnode *node){
root = node;
}
std::pair<AVL*, AVL*> AVL::splitAtRoot(){
struct AVLnode *leftTree = root->left;
struct AVLnode *rightTree = root->right;
char nameleft[50], nameright[50];
int i=0;
while (name[i]!='\0')
{
nameleft[i] = name[i];
nameright[i] = name[i];
i++;
}
nameleft[i] = ':';
nameright[i] = ':';
nameleft[i+1] = 'L';
nameright[i+1] = 'R';
nameleft[i+2] = '\0';
nameright[i+2] = '\0';
AVL *leftAVL = new AVL(nameleft);
AVL *rightAVL = new AVL(nameright);
leftAVL->setRoot(leftTree);
rightAVL->setRoot(rightTree);
root->left = nullptr;
root->right = nullptr;
leftAVL->insert(root->key, root->object);
std::pair<AVL*, AVL*> returnPair(leftAVL, rightAVL);
return returnPair;
}
std::pair<AVL*, AVL*> AVL::splitAtKey(int key){
if(key == root->key){
std::cout<<"Here"<<std::endl;
return splitAtRoot();
}
AVLnode *lessThan[100];
int lessThanTop = -1;
AVLnode *greaterThan[100];
int greaterThanTop = -1;
AVLnode* iterator = root;
while (iterator != nullptr && iterator->key != key)
{
if (iterator->key > key)
{
if (iterator->right != nullptr)
greaterThan[++greaterThanTop] = iterator->right;
iterator->right = nullptr;
greaterThan[++greaterThanTop] = iterator;
iterator = iterator->left;
greaterThan[greaterThanTop]->left = nullptr;
}
else if(iterator->key < key)
{
if (iterator->left != nullptr)
lessThan[++lessThanTop] = iterator->left;
iterator->left = nullptr;
lessThan[++lessThanTop] = iterator;
iterator = iterator->right;
lessThan[lessThanTop]->right = nullptr;
}
}
if (iterator != nullptr && iterator->key == key)
{
if (iterator->right != nullptr)
greaterThan[++greaterThanTop] = iterator->right;
if (iterator->left != nullptr)
lessThan[++lessThanTop] = iterator->left;
lessThan[++lessThanTop] = iterator;
iterator->left = nullptr;
iterator->right = nullptr;
}
AVLnode *leftTreeNode = nullptr;
for (int i = 0; i <= lessThanTop; i++)
{
leftTreeNode = insertObjectDr(leftTreeNode, lessThan[i]);
}
AVLnode *rightTreeNode = nullptr;
for (int i = 0; i <= greaterThanTop; i++)
{
rightTreeNode = insertObjectDr(rightTreeNode, greaterThan[i]);
}
char nameleft[50], nameright[50];
int i=0;
while (name[i]!='\0')
{
nameleft[i] = name[i];
nameright[i] = name[i];
i++;
}
nameleft[i] = ':';
nameright[i] = ':';
nameleft[i+1] = 'L';
nameright[i+1] = 'R';
nameleft[i+2] = '\0';
nameright[i+2] = '\0';
AVL *leftAVL = new AVL(nameleft);
AVL *rightAVL = new AVL(nameright);
leftAVL->setRoot(leftTreeNode);
rightAVL->setRoot(rightTreeNode);
root = nullptr;
std::pair<AVL*, AVL*> returnPair(leftAVL, rightAVL);
return returnPair;
}