-
Notifications
You must be signed in to change notification settings - Fork 1
/
topkheap.h
87 lines (72 loc) · 1.8 KB
/
topkheap.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
86
87
#ifndef TOPKHEAP_H
#define TOPKHEAP_H
#include "binaryheap.h"
#include "indexitem.h"
#include <iostream>
#include <vector>
using namespace std;
class TopkHeap
{
public:
explicit TopkHeap(const unsigned int capacity0 = 100, const char *compare = "lg");
bool isEmpty( ) const;
unsigned int size() const
{
return array.size();
}
bool insert(const unsigned int idx, const float val,
const unsigned int vkid, long pcode,
const float dp, const float dc);
bool insert(const unsigned int idx, const float val);
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();
leafHeap->makeEmpty();
}
void sort();
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";
}
void printLeaf()
{
leafHeap->print();
}
~TopkHeap()
{
this->makeEmpty();
leafHeap->makeEmpty();
delete leafHeap;
}
static void test();
private:
unsigned int capacity, leaf_num;
vector<IndexItem*> array;
BinaryHeap *leafHeap;
bool (*comparer)(const IndexItem *a, const IndexItem *b);
bool (*heaper)(const IndexItem *a, const IndexItem *b);
};
#endif