标签:
Compare two version numbers version1 and version1.
If version1 > version2 return 1, if version1 < version2 return -1, otherwise return 0.
You may assume that the version strings are non-empty and contain only digits and the .
character.
The .
character does not represent a decimal point and is used to separate number sequences.
For instance, 2.5
is not "two and a half" or "half way to version three", it is the fifth second-level revision of the second first-level revision.
Here is an example of version numbers ordering:
0.1 < 1.1 < 1.2 < 13.37
Credits:
Special thanks to @ts for adding this problem and creating all test cases.
这道题调试了好久,一直不想上网搜别人的解法,因为感觉自己可以做出来,改来改去最后终于通过了,再上网一搜,发现果然和别人的方法不同,小有成就感。我的思路是:由于两个版本号所含的小数点个数不同,有可能是1和1.1.1比较,还有可能开头有无效0,比如01和1就是相同版本,还有可能末尾无效0,比如1.0和1也是同一版本。对于没有小数点的数字,可以默认为最后一位是小数点,而版本号比较的核心思想是相同位置的数字比较,比如题目给的例子,1.2和13.37比较,我们都知道应该显示1和13比较,13比1大,所以后面的不用再比了,再比如1.1和1.2比较,前面都是1,则比较小数点后面的数字。那么算法就是每次对应取出相同位置的小数点之前所有的字符,把他们转为数字比较,若不同则可直接得到答案,若相同,再对应往下取。如果一个数字已经没有小数点了,则默认取出为0,和另一个比较,这样也解决了末尾无效0的情况。代码如下:
class Solution { public: int compareVersion(string version1, string version2) { int n1 = version1.size(); int n2 = version2.size(); int p1 = 0, p2 = 0; string v1, v2; int d1 = 0, d2 = 0; while (p1 < n1 || p2 < n2) { v1.clear(); while (p1 < n1 && version1[p1] != ‘.‘) { v1.push_back(version1[p1++]); } ++p1; d1 = atoi(v1.c_str()); v2.clear(); while (p2 < n2 && version2[p2] != ‘.‘) { v2.push_back(version2[p2++]); } ++p2; d2 = atoi(v2.c_str()); if (d1 > d2) return 1; else if (d1 < d2) return -1; } return 0; } };
[LeetCode] Compare Version Numbers 版本比较
标签:
原文地址:http://www.cnblogs.com/grandyang/p/4244123.html