-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathclustering.cpp
178 lines (154 loc) · 4.24 KB
/
clustering.cpp
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#include <iostream>
#include <vector>
#include <string>
#include <fstream>
#include <cmath>
#include <map>
using namespace std;
const int NOISE = -2;
const int NOT_CLASSIFIED = -1;
class Point {
public:
double x, y;
int ptsCnt, cluster;
double getDis(const Point & ot) {
return sqrt((x-ot.x)*(x-ot.x)+(y-ot.y)*(y-ot.y));
}
};
class DBCAN {
public:
int n, minPts;
double eps;
vector<Point> points;
int size;
vector<vector<int> > adjPoints;
vector<bool> visited;
vector<vector<int> > cluster;
int clusterIdx;
DBCAN(int n, double eps, int minPts, vector<Point> points) {
this->n = n;
this->eps = eps;
this->minPts = minPts;
this->points = points;
this->size = (int)points.size();
adjPoints.resize(size);
this->clusterIdx=-1;
}
void run () {
checkNearPoints();
for(int i=0;i<size;i++) {
if(points[i].cluster != NOT_CLASSIFIED) continue;
if(isCoreObject(i)) {
dfs(i, ++clusterIdx);
} else {
points[i].cluster = NOISE;
}
}
cluster.resize(clusterIdx+1);
for(int i=0;i<size;i++) {
if(points[i].cluster != NOISE) {
cluster[points[i].cluster].push_back(i);
}
}
}
void dfs (int now, int c) {
points[now].cluster = c;
if(!isCoreObject(now)) return;
for(auto&next:adjPoints[now]) {
if(points[next].cluster != NOT_CLASSIFIED) continue;
dfs(next, c);
}
}
void checkNearPoints() {
for(int i=0;i<size;i++) {
for(int j=0;j<size;j++) {
if(i==j) continue;
if(points[i].getDis(points[j]) <= eps) {
points[i].ptsCnt++;
adjPoints[i].push_back(j);
}
}
}
}
// is idx'th point core object?
bool isCoreObject(int idx) {
return points[idx].ptsCnt >= minPts;
}
vector<vector<int> > getCluster() {
return cluster;
}
};
class InputReader {
private:
ifstream fin;
vector<Point> points;
public:
InputReader(string filename) {
fin.open(filename);
if(!fin) {
cout << filename << " file could not be opened\n";
exit(0);
}
parse();
}
void parse() {
int idx;
double x, y;
while(!fin.eof()) {
fin >> idx >> x >> y;
points.push_back({x,y,0, NOT_CLASSIFIED});
}
points.pop_back();
}
vector<Point> getPoints() {
return points;
}
};
class OutputPrinter {
private:
ofstream fout;
vector<vector<int> > cluster;
string filename;
int n;
public:
OutputPrinter(int n, string filename, vector<vector<int> > cluster) {
this->n = n;
this->cluster = cluster;
// remove ".txt" from filename
if(filename.size()<4){
cout << filename << "input file name's format is wrong\n";
exit(0);
}
for(int i=0;i<4;i++) filename.pop_back();
this->filename = filename;
// sort by size decending order
sort(cluster.begin(), cluster.end(), [&](const vector<int> i, const vector<int> j) {
return (int)i.size() > (int)j.size();
});
}
void print() {
for(int i=0;i<n;i++) {
fout.open(filename+"_cluster_"+to_string(i)+".txt");
for(int j=0;j<cluster[i].size();j++) {
fout << cluster[i][j] << endl;
}
fout.close();
}
}
};
int main(int argc, const char * argv[]) {
if(argc!=5) {
cout << "Please follow this format. clustering.exe [intput] [n] [eps] [minPts]";
return 0;
}
string inputFileName(argv[1]);
string n(argv[2]);
string eps(argv[3]);
string minPts(argv[4]);
InputReader inputReader(inputFileName);
DBCAN dbScan(stoi(n), stod(eps), stoi(minPts), inputReader.getPoints());
dbScan.run();
OutputPrinter outputPrinter(stoi(n), inputFileName, dbScan.getCluster());
outputPrinter.print();
return 0;
}