-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSource1.cpp
More file actions
118 lines (118 loc) · 2.56 KB
/
Source1.cpp
File metadata and controls
118 lines (118 loc) · 2.56 KB
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
//#include <iostream>
//#include <vector>
//
//using namespace std;
//
//struct treenode {
// int data;
// struct treenode* leftChild;
// struct treenode* rightChild;
//};
//
//struct treenode* insertData(int data, struct treenode* root) {
// struct treenode* tempNode = (struct treenode*) malloc(sizeof(struct treenode));
// treenode *nodeCurrent;
// treenode *nodeParent;
//
// tempNode->data = data;
// tempNode->leftChild = NULL;
// tempNode->rightChild = NULL;
//
// if (root == NULL) {
// root = tempNode;
// return root;
// }
// else {
// nodeCurrent = root;
// nodeParent = NULL;
//
// while (true) {
// nodeParent = nodeCurrent;
// // searching the insert position of the left subtree
// if (data < nodeParent->data) {
// nodeCurrent = nodeCurrent->leftChild;
// if (nodeCurrent == NULL) {
// nodeParent->leftChild = tempNode;
// return root;
// }
// }
// else {
// nodeCurrent = nodeCurrent->rightChild;
//
// if (nodeCurrent == NULL)
// {
// nodeParent->rightChild = tempNode;
// return root;
// }
// }
// }
// }
//
//}
//
//struct treenode* searchElement(int data, treenode* root) {
// if (root == NULL)
// return root;
//
// treenode* currentNode = root;
//
// while (currentNode->data != data) {
// if (currentNode->data > data) {
// currentNode = currentNode->leftChild;
// }
// else {
// currentNode = currentNode->rightChild;
// }
//
// if (currentNode == NULL)
// return NULL;
// }
//
// return currentNode;
//}
//
//void preOrderTraversal(treenode* root) {
//
// if (root != NULL) {
// cout << root->data<<endl;
// preOrderTraversal(root->leftChild);
// preOrderTraversal(root->rightChild);
// }
//}
//
//void inOrderTraversal(treenode* root)
//{
// if (root != NULL) {
// inOrderTraversal(root->leftChild);
// cout << root->data<<endl;
// inOrderTraversal(root->rightChild);
// }
//}
//
//void postOrderTraversal(treenode* root) {
// if (root != NULL) {
// postOrderTraversal(root->leftChild);
// postOrderTraversal(root->rightChild);
// cout << root->data << endl;
// }
//}
//
//
//int main() {
//
// //27, 14, 35, 10, 19, 31, 42
// treenode *root = NULL;
// root = insertData(27,root);
// root = insertData(14, root);
// root = insertData(35, root);
// root= insertData(10, root);
// root= insertData(19, root);
// root= insertData(31, root);
// root= insertData(42, root);
//
// //postOrderTraversal(root);
//
// treenode* temp = searchElement(19, root);
// cout << temp->data << endl;
// return 0;
//}