-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueryfile.cpp
75 lines (52 loc) · 1.28 KB
/
queryfile.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
#include <string>
#include "queryfile.hpp"
using namespace std;
//----------------------------query files----------------------------//
int countQueryFileHam(ifstream &file, string line) {
int count = 0;
while (getline(file, line)) {
count++;
}
return count;
}
string readQueryFileHam(ifstream &file, string line) {
unsigned long pos = line.find_first_of("\t");
line = line.substr(pos + 1);
return line;
}
int countQueryFileEu(ifstream &file, string line) {
int count = 0;
while (getline(file, line)) {
count++;
}
return count;
}
int getQueryFileDim(ifstream &file, string line) {
string previousSubstring;
int dim = 0;
getline(file, line);
getline(file, line);
while (line.find_first_of("\t") != -1) {
const unsigned long pos = line.find_first_of("\t");
if (pos == -1) {
break;
}
line = line.substr(pos + 1);
dim++;
}
return dim;
}
double readQueryFileEu(ifstream &file, string line, unsigned long pos) {
double queryPointsArray;
queryPointsArray = stod(line.substr(0, pos));
pos = line.find_first_of("\t");
line = line.substr(pos + 1);
return queryPointsArray;
}
int radiusQueryFile(string line){
int radius;
const unsigned long pos = line.find_first_of("\t");
line = line.substr(pos + 1);
radius = stoi(line);
return radius;
}