-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneric_Trees.cpp
164 lines (127 loc) · 3.61 KB
/
Generic_Trees.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
158
159
160
161
162
163
164
//by Sushant Gaurav
#include <bits/stdc++.h>
#include <map>
using namespace std;
map <int , int> HashMap;
map <int , int> :: iterator it;
struct treenode
{
int info;
struct treenode *first;
struct treenode *next;
};
struct treenode* create(int data)
{
struct treenode *root = new treenode;
root->info = data;
root->first = root->next = NULL;
}
//1-----------------------------------------------------------------------------------------------------------------------------------------------
void traverse(struct treenode *root)
{
if(root == NULL)
return;
cout<<root->info<<" ";
if(root->first)
traverse(root->first);
if(root->next)
traverse(root->next);
}
//2-----------------------------------------------------------------------------------------------------------------------------------------------
void depth(struct treenode *root , int height)
{
if(root == NULL)
return ;
if(root->first != NULL)
HashMap[height] = root->info;
if(root->first)
depth(root->first,height+1);
if(root->next)
depth(root->next,height);
}
//3-----------------------------------------------------------------------------------------------------------------------------------------------
int nodesum(struct treenode *root)
{
if(root == NULL)
return 0;
return (root->info + nodesum(root->first) + nodesum(root->next));
}
//4-----------------------------------------------------------------------------------------------------------------------------------------------
int siblings(struct treenode *root)
{
int count=0;
if(root == NULL)
return 0;
while(root)
{
count++;
root = root->next;
}
return count;
}
int children(struct treenode *root)
{
int count=0;
if(root == NULL)
return 0;
root = root->first;
while(root)
{
count++;
root = root->next;
}
return count;
}
int main()
{
int choice;
struct treenode *root = create(10);
root->first = create(20);
root->first->next = create(30);
root->first->next->first = create(60);
root->first->next->next = create(40);
root->first->next->next->next = create(50);
root->first->next->next->next->first = create(70);
root->first->next->next->next->first->next = create(80);
root->first->next->next->next->first->next->next = create(90);
root->first->next->next->next->first->next->next->first = create(100);
while(1)
{
cout<<"\n1. Tree Traversal"<<endl;
cout<<"2. Depth of the tree"<<endl;
cout<<"3. Sum of elements"<<endl;
cout<<"4. Number of siblings"<<endl;
cout<<"5. Number of children"<<endl;
cout<<"6. EXIT"<<endl;
cout<<"Enter your choice : ";
cin>>choice;
switch(choice)
{
case 1:
traverse(root);
cout<<endl;
break;
case 2:
depth(root,0);
it = HashMap.end();
cout<<"\nDepth = "<<it->second;
cout<<endl<<it->first;
break;
case 3:
cout<<"Sum of nodes = "<<nodesum(root)<<endl;
break;
case 4:
cout<<"\nNumber of siblings = "<<siblings(root)<<endl;
break;
case 5:
cout<<"\nNumber of children = "<<children(root)<<endl;
break;
case 6:
exit(0);
break;
default:
cout<<"\nINVALID CHOICE"<<endl;
}
}
return 0;
}