-
Notifications
You must be signed in to change notification settings - Fork 1
/
binaryheap.h
85 lines (70 loc) · 1.81 KB
/
binaryheap.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef HEAP_H
#define HEAP_H
#include "indexitem.h"
#include <iostream>
#include <vector>
using namespace std;
/******************************************************
@Author Wan-Lei Zhao
@Date 02-Sep-2011
@Copyrights Reserved by Wan-Lei Zhao
BinaryHeap
*****************************************************/
class BinaryHeap
{
public:
explicit BinaryHeap( const unsigned int capacity0 = 100, const char *compare = "lg");
bool isEmpty( ) const
{
return (array.size() == 0);
}
unsigned int size() const
{
return array.size();
}
bool insert(const unsigned int idx, const float val, const float tmcode);
bool updateRoot(const unsigned int idx, const float val, const float tmcode);
bool root(IndexItem &root);
vector<IndexItem*>::iterator begin()
{
return array.begin();
}
vector<IndexItem*>::iterator end()
{
return array.end();
}
void makeEmpty( )
{
vector<IndexItem*>::iterator it;
IndexItem* crnt_itm;
for(it = array.begin(); it != array.end(); it++)
{
crnt_itm = *it;
delete crnt_itm;
}
array.clear();
}
void print()
{
vector<IndexItem*>::iterator it;
IndexItem* crnt_itm;
cout<<"-------------------------\n";
for(it = array.begin(); it != array.end(); it++)
{
crnt_itm = *it;
cout<<crnt_itm->index<<" "<<crnt_itm->val<<endl;
}
cout<<"--------------------------\n";
}
~BinaryHeap()
{
this->makeEmpty();
}
static void test();
private:
unsigned int capacity;
vector<IndexItem*> array;
bool (*comparer)(const IndexItem *a, const IndexItem *b);
bool (*heaper)(const IndexItem *a, const IndexItem *b);
};
#endif