首页 > 代码库 > 165. Compare Version Numbers (String)
165. Compare Version Numbers (String)
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
注意:版本格式可能会有多个子版本
class Solution { public: int compareVersion(string version1, string version2) { vector<int> arr_v1,arr_v2; int pos1_pre = 0, pos2_pre = 0, pos1=version1.find_first_of(‘.‘),pos2=version2.find_first_of(‘.‘); while(pos1!=-1){ arr_v1.push_back(atoi(version1.substr(pos1_pre,pos1).c_str())); pos1_pre = pos1+1; pos1 = version1.find_first_of(‘.‘,pos1_pre); } arr_v1.push_back(atoi(version1.substr(pos1_pre).c_str())); while(pos2!=-1){ arr_v2.push_back(atoi(version2.substr(pos2_pre,pos2).c_str())); pos2_pre = pos2+1; pos2 = version2.find_first_of(‘.‘,pos2_pre); } arr_v2.push_back(atoi(version2.substr(pos2_pre).c_str())); int size1 = arr_v1.size(); int size2 = arr_v2.size(); int size = min(size1,size2); for(int i = 0; i < size; i++){ if(arr_v1[i] > arr_v2[i]) return 1; else if(arr_v1[i] < arr_v2[i]) return -1; } if(size == size1){ for(int i = size; i < size2; i++){ if(arr_v2[i]!=0) return -1; } return 0; } else{ for(int i = size; i < size1; i++){ if(arr_v1[i]!=0) return 1; } return 0; } } };
165. Compare Version Numbers (String)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。