forked from shikharkohli/c---files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbintree.cpp
executable file
·168 lines (154 loc) · 2.73 KB
/
bintree.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
165
166
167
168
//Level by level traversal
#include<iostream>
#include<queue>
#include<stack>
using namespace std;
struct node
{
char data;
node *left;
node *right;
};
class tree{
node *ROOT;
public:
tree(){ROOT=NULL;}
void insert();
node * retroot(){return ROOT;}
void trav();
void nthlargest(node *,int,int);
void nonrectrav();
};
void tree::nonrectrav()
{
node *temp=ROOT;
stack<node *> s;
do
{
node *temp2=temp;
left:
while(temp!=NULL)
{
s.push(temp);
temp2=temp;
temp=temp->left;
}
temp2=temp2->right;
while(temp2!=NULL)
{
s.push(temp2);
if(temp2->left!=NULL)
goto left;
temp2=temp2->right;
}
if(!s.empty())
{
node *temp1=s.top();
s.pop();
cout<<temp1->data<<", ";
temp=temp1->left;
}
}while(!s.empty() || temp!=NULL);
}
void tree::insert()
{
node *temp=new node;
cin>>temp->data;
temp->left=NULL;
temp->right=NULL;
if(ROOT==NULL)
{
ROOT=temp;
return ;
}
node *first=ROOT;
//cout<<first<<","<<first->right<<","<<first->left<<endl;
//cout<<temp->data<<endl;
node *second=NULL;
while(first)
{
second=first;
//cout<<"Looping..."<<endl;
if(temp->data < first->data)
{ first=first->left;}
else
first=first->right;
/*else{
cout<<"Greater than, going right"<<endl;
if(first->right!=NULL)
{ node *temp1=first->right;
first=temp1;}
else
first=NULL;
}*/
//cout<<second->data<<" "<<first->data<<endl;
}
if(second==NULL)
return;
if(temp->data >= second->data)
{
//cout<<"greater than";
second->right=temp;}
else
second->left=temp;
//cout<<second->data<<endl;
}
//BFS of the tree
void tree::trav()
{
//if(ROOT==NULL)
// return;
queue<node *> q;
q.push(ROOT);
while(!q.empty())
{
// if(q.front()!=NULL){
cout<<q.front()->data<<endl;
node *temp=q.front();
q.pop();
if(temp->left!=NULL) q.push(temp->left);
if(temp->right!=NULL) q.push(temp->right);
// }
// else
// break;
}
}
/*void tree::nthlargest(node *root,int n,int i)
{
if(n==i)
cout<<"Fifth largest is "<<root->data;
node *temp=root;
while(temp->left!=NULL)
temp=temp->left;
cout<<i<<" element is "<<temp->data<<endl;
if(temp->right!=NULL)
this->nthlargest(temp->right,n,i+1);
//node is a leaf
else
{
node *temp1=root;
while(temp1->left->data!=temp->data) //locate parent
temp1=temp1->left;
cout<<i+1<<" element is "<<temp1->data<<endl;
this->nthlargest(temp1->right,n,i+1);
}
}*/
void tree::nthlargest(node *root,int n,int i)
{
if(root->left!=NULL)
this->nthlargest(root->left,n,i+1);
if(n==i)
cout<<"The element is "<<root->data<<endl;
if(root->right!=NULL)
this->nthlargest(root->right,n,i+1);
}
int main()
{
tree t;
for(int i=0;i<9;i++)
t.insert();
t.trav();
cout<<endl;
t.nthlargest(t.retroot(),4,0);
return 0;
}