-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlink.cpp
More file actions
162 lines (143 loc) · 2.78 KB
/
link.cpp
File metadata and controls
162 lines (143 loc) · 2.78 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
///****************
//***2015154035****
//*****조원희******/
#include <iostream>
#include <thread>
#include <mutex>
#include <chrono>
#include <vector>
using namespace std;
using namespace chrono;
class NODE { //Node 클래스 선언
public:
int key;
NODE* next; //Key 값과 Link
NODE() { next = NULL; }
NODE(int key_value) {
next = NULL;
key = key_value;
}
~NODE() {}
};
class CLIST {
NODE head, tail;
mutex glock;
public:
CLIST()
{
head.key = 0x80000000; //head 리스트 중 최솟값
tail.key = 0x7FFFFFFF; //tail 리스트 중 최댓값
head.next = &tail;
}
~CLIST() {}
void clear() //리스트 초기화
{
NODE* ptr = head.next;
while (ptr != &tail)
{
NODE* to_delete = ptr;
ptr = ptr->next;
delete to_delete;
}
head.next = &tail;
}
bool Add(int x) //리스트 추가
{
NODE* pred = &head;
glock.lock();
NODE* curr = pred->next;
while (curr->key < x)
{
pred = curr;
curr = curr->next;
}
if (curr->key == x) {
glock.unlock();
return false;
}
else {
NODE* new_node = new NODE(x);
new_node->next = curr;
pred->next = new_node;
glock.unlock();
return true;
}
}
bool remove(int x) //리스트 삭제
{
NODE* pred = &head;
glock.lock();
NODE* curr = pred->next;
while (curr->key < x)
{
pred = curr;
curr = curr->next;
}
if (curr->key == x) {
pred->next = curr->next;
delete curr;
glock.unlock();
return true;
}
else {
glock.unlock();
return false;
}
}
bool contains(int x) //리스트 확인
{
NODE* pred = &head;
glock.lock();
NODE* curr = pred->next;
while (curr->key < x)
{
pred = curr;
curr = curr->next;
}
if (curr->key == x) {
glock.unlock();
return true;
}
else {
glock.unlock();
return false;
}
}
};
constexpr int NUM_TEXT = 4000000;
constexpr int KEY_RANGE = 1000;
CLIST my_set;
void benchmark(int num_threads)
{
for (int i = 0; i < NUM_TEXT / num_threads; i++)
{
switch (rand() % 3) {
case 0:
my_set.Add(rand() % KEY_RANGE);
break;
case 1:
my_set.remove(rand() % KEY_RANGE);
break;
case 2:
my_set.contains(rand() % KEY_RANGE);
break;
}
}
}
int main()
{
for (int count = 1; count <= 16; count *= 2)
{
vector<thread> threads;
auto start_t = high_resolution_clock::now();
for (int i = 0; i < count; i++) {
threads.emplace_back(benchmark,count);
}
for (auto& t : threads)t.join();
auto end_t = high_resolution_clock::now();
auto exec_time = end_t - start_t;
cout << "number of threads = " << count << ", ";
cout << "Exec Time = " << duration_cast<milliseconds>(exec_time).count() << "ms" << endl;
my_set.clear(); //작업 후 리스트 초기화
}
}