-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatafile.cpp
65 lines (46 loc) · 1.1 KB
/
datafile.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
#include <iostream>
#include <string>
#include "datafile.hpp"
using namespace std;
//----------------------------data files----------------------------//
int countDataFileHam(ifstream &file, string line) {
int count = 0;
while (getline(file, line)) {
count++;
}
return count;
}
string readDataFileHam(ifstream &file, string line) {
unsigned long pos = line.find_first_of("\t");
line = line.substr(pos+1);
return line;
}
int countDataFileEu(ifstream &file, string line) {
int count = 0;
getline(file, line);
while (getline(file, line)) {
count++;
}
return count;
}
int getDataFileDim(ifstream &file, string line) {
string previousSubstring;
int dim = 0;
getline(file, line);
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;
}
string readDataFileEu(ifstream &file, string line) {
unsigned long pos = line.find_first_of("\t");
line = line.substr(pos+1);
return line;
}