-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11maxheap_from_bst.cpp
68 lines (65 loc) · 1.59 KB
/
11maxheap_from_bst.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
#include<bits/stdc++.h>
using namespace std;
class Node{
public:
int val;
Node* left;
Node* right;
Node(int val){
this->val = val;
this->left = nullptr;
this->right = nullptr;
}
};
void revInorder(Node *root, vector<int> &dec){//make a decreasing inorder array
if (root==nullptr) return;
revInorder(root->right, dec);
dec.push_back(root->val);
revInorder(root->left, dec);
}
void printTree(Node *root){
queue<Node*> q;
q.push(root);
while(q.size()>0){
Node* temp = q.front();
q.pop();
cout<<temp->val<<" ";
if(temp->left!=nullptr) q.push(temp->left);
if(temp->right!=nullptr) q.push(temp->right);
}
cout<<endl;
}
//modify the to have preorde using the reverse sorted array
void preorder(Node *root, vector<int> &dec, int& i){
if (root==nullptr) return;
root->val = dec[i++];
preorder(root->left, dec, i);
preorder(root->right, dec, i);
}
int main(){
Node* a = new Node(10);
Node* b = new Node(5);
Node* c = new Node(16);
Node* d = new Node(1);
Node* e = new Node(8);
Node* f = new Node(12);
Node* g = new Node(20);
a->left = b; a->right = c;
b->left = d; b->right = e;
c->left = f; c->right = g;
vector<int> dec;//reverse inorder
revInorder(a, dec);
cout<<"before converting to maxheap:"<<endl;
printTree(a);
int i = 0;
preorder(a, dec, i);
cout<<"after converting to maxheap:"<<endl;
printTree(a);
return 0;
}
/*
before converting to maxheap:
10 5 16 1 8 12 20
after converting to maxheap:
20 16 8 12 10 5 1
*/