-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_dup.h
executable file
·125 lines (119 loc) · 2.41 KB
/
check_dup.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
* check_dup.h
*
* Created on: 2013-7-14
* Author: guopeng01
*/
#ifndef CHECK_DUP_H_
#define CHECK_DUP_H_
template <typename T>
class SpeicalQueue
{
public:
SpeicalQueue(unsigned _cap):capbilty(_cap),idx(0),size(0)
{
assert(capbilty > 0);
array = new T[capbilty];
hash = new T[capbilty];
// init, cannot be i+1 in hash[i]
for (unsigned i = 0; i < capbilty; ++i)
{
hash[i] = i + 1;
}
}
virtual ~SpeicalQueue()
{
delete [] array;
array = NULL;
delete [] hash;
hash = NULL;
}
bool Push(const T &item)
{
if (size < capbilty) // not full
{
array[idx] = item;
size++;
unsigned curr_hash_idx = item%capbilty;
hash[curr_hash_idx] = item;
idx = (idx+1)%capbilty;
}
else // full, replace
{
const T &pre_item = array[idx];
unsigned pre_hash_idx = pre_item%capbilty;
hash[pre_hash_idx] = pre_hash_idx + 1; // init
array[idx] = item;
unsigned curr_hash_idx = item%capbilty;
hash[curr_hash_idx] = item;
idx = (idx+1)%capbilty;
}
return true;
}
bool IsDup(const T &item)
{
unsigned hash_idx = item % capbilty;
bool flag = false;
if (item == hash[hash_idx])
flag = true;
else
flag = false;
return flag;
}
void ToString() const
{
std::cout << "------begin display queue_item-----------" << std::endl;
for (unsigned i = 0; i < size; i++)
{
std::cout << array[i] << ",";
}
std::cout << std::endl;
std::cout << "------begin display hash_item-----------" << std::endl;
for (unsigned i = 0; i < size; i++)
{
std::cout << hash[i] << ",";
}
std::cout << std::endl;
}
private:
unsigned capbilty;
unsigned idx;
unsigned size;
T *array; // store item
T *hash; // dup_flag
};
void TestDup()
{
SpeicalQueue<unsigned> queue(10);
unsigned item = 3;
queue.Push(item);
item = 4;
queue.Push(item);
item = 2;
queue.Push(item);
item = 5;
queue.Push(item);
item = 7;
queue.Push(item);
item = 6;
queue.Push(item);
item = 8;
queue.Push(item);
item = 10;
queue.Push(item);
item = 9;
queue.Push(item);
item = 12;
queue.Push(item);
item = 11;
queue.Push(item);
queue.ToString();
item = 4;
std::cout << queue.IsDup(item) << std::endl;
item = 13;
std::cout << queue.IsDup(item) << std::endl;
queue.Push(item);
std::cout << queue.IsDup(item) << std::endl;
queue.ToString();
}
#endif /* CHECK_DUP_H_ */