Compare two version numbers version1 and version2.
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
原文链接http://blog.youkuaiyun.com/crazy__chen/article/details/46388059
本文介绍了一种用于比较软件版本号的算法实现。该算法通过解析版本号字符串,并将其拆分为不同的数字序列进行逐位比较,从而确定两个版本号之间的大小关系。
519

被折叠的 条评论
为什么被折叠?



