Leetcode刷题笔记题解(C++):165. 比较版本号

Leetcode刷题笔记题解(C++):165. 比较版本号_第1张图片

思路:利用小数点来分开求和,判断和是否相等来推断两个版本号是否一致

class Solution {
public:
    int compareVersion(string version1, string version2) {
        int i=0;//记录version1的字符下标
        int j=0;//记录version2的字符下标
        int num1=0;//保存version1的和
        int num2=0;//保存version2的和
        while(inum2) return 1;
            else if(num1

你可能感兴趣的:(Leetcode算法题解,leetcode,笔记,c++)