-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCompare_Version_Numbers.cpp
62 lines (58 loc) · 1.69 KB
/
Compare_Version_Numbers.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
class Solution {
public:
int compare(string const& lhs, string const& rhs) {
int n1 = lhs.length();
int n2 = rhs.length();
int i = 0, j = 0;
while(i < n1 and lhs[i] == '0') {
++i;
}
while(j < n1 and rhs[j] == '0') {
++j;
}
if(n1 - i != n2 - j) {
return (n1 - i > n2 - j) ? 1 : -1;
}
for(; i < n1 and j < n2; ++i, ++j) {
if(lhs[i] != rhs[j]) {
return (lhs[i] > rhs[j]) ? 1 : -1;
}
}
return 0;
}
int compareVersion(string version1, string version2) {
size_t n1 = version1.length();
size_t n2 = version2.length();
char str1[n1], str2[n2];
char ch;
for(int i = 0, j = 0, k; i < n1 or j < n2; ++i, ++j) {
if(i < n1) {
ch = version1[i];
k = 0;
while(ch != '\0' and ch != '.') {
str1[k++] = ch;
ch = version1[++i];
}
str1[k] = '\0';
} else {
str1[0] = '\0';
}
if(j < n2) {
ch = version2[j];
k = 0;
while(ch != '\0' and ch != '.') {
str2[k++] = ch;
ch = version2[++j];
}
str2[k] = '\0';
} else {
str2[0] = '\0';
}
int ret = compare(str1, str2);
if(ret != 0) {
return ret;
}
}
return 0;
}
};