-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMax_MIn_of_binary_tree.cpp
45 lines (45 loc) · 1.2 KB
/
Max_MIn_of_binary_tree.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
#include <bits/stdc++.h>
using namespace std;
class node{
public:
int data;
node* left;
node* right;
node(int val)
{
data = val;
left = NULL;
right = NULL;
}
};
node* binarytreeformer(int data){
if(data == -1) return NULL;
node* ndoe = new node(data);
int leftnode, rightnode;
cout<<"enter data of left node of "<<data<<endl;
cin>>leftnode;
ndoe->left = binarytreeformer(leftnode);
cout<<"enter data of right node of "<<data<<endl;
cin>>rightnode;
ndoe->right = binarytreeformer(rightnode);
return ndoe;
}
int minofbinarytree(node* head)
{
if(head == NULL) return INT_MAX;
return min(min(minofbinarytree(head->left), minofbinarytree(head->right)), head->data);
}
int maxofbinarytree(node* head)
{
if(head == NULL) return INT_MIN;
return max(max(maxofbinarytree(head->left), maxofbinarytree(head->right)), head->data);
}
int main()
{
int root;
cout<<"Enter the root node data, -1 for empty node"<<endl;
cin>>root;
node* head = binarytreeformer(root);
cout<<"minimum node value of binary tree = "<<minofbinarytree(head)<<endl;
cout<<"maximum node value of binary tree = "<<maxofbinarytree(head);
}