-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPriorityQueue.h
62 lines (46 loc) · 1.27 KB
/
PriorityQueue.h
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
#ifndef _PRIORITY_QUEUE
#define _PRIORITY_QUEUE
#include <iostream>
#include <unistd.h>
#include "RecordPageNum.h"
#include "Comparison.h"
#include "ComparisonEngine.h"
#include "stdlib.h"
using namespace std;
// Data structure for Min Heap
class PriorityQueue
{
private:
// vector to store heap elements
RecordPageNum *A;
OrderMaker *sortorder;
ComparisonEngine ceng;
int size = 0;
// return parent of A[i]
// don't call this function if i is already a root node
int PARENT(int i);
// return left child of A[i]
int LEFT(int i);
// return right child of A[i]
int RIGHT(int i);
void swap(RecordPageNum *rec1, RecordPageNum *rec2);
// Recursive Heapify-down algorithm
// the node at index i and its two direct children
// violates the heap property
void heapify_down(int i);
// Recursive Heapify-up algorithm
void heapify_up(int i);
public:
PriorityQueue(OrderMaker *sort, int size);
// return size of the heap
int getLength();
// function to check if heap is empty or not
bool empty();
// insert key into the heap
void push(RecordPageNum *key);
// function to remove element with lowest priority (present at root)
void pop();
// function to return element with lowest priority (present at root)
void top(RecordPageNum *tempRec);
};
#endif