-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplit.cpp
60 lines (51 loc) · 1.13 KB
/
split.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
#include<string>
#include<sstream>
#include<vector>
using namespace std;
vector<int> split(const string s, char delim, vector<int> &elem)
{
stringstream inputs(s);
string item;
while (getline(inputs, item, delim))
{
elem.push_back(atoi(item.c_str()));
}
return elem;
}
vector<int> split(const string s, char delim)
{
vector<int> elems;
split(s, delim, elems);
return elems;
}
void rightTrimZero(vector<int> &v) {
while (v.back() == 0) {
v.pop_back();
}
}
int compareVersion(string version1, string version2) {
//split the version by delimer '.'
vector<int> ver1 = split(version1, '.');
vector<int> ver2 = split(version2, '.');
//remove the right Zeros
rightTrimZero(ver1);
rightTrimZero(ver2);
//compare two versions
for (int i = 0; i<ver1.size() && i < ver2.size(); i++) {
if (ver1[i] < ver2[i]) {
return -1;
}
else if (ver1[i] > ver2[i]) {
return 1;
}
} //if the above for-loop is not returned, which means they are equal so far
//then check the length.
//e.g. 1.0 1.0.1
if (ver1.size() > ver2.size()) {
return 1;
}
else if (ver1.size() < ver2.size()) {
return -1;
}
return 0;
}