中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 165. Compare Version Numbers 字符串

發布時間:2020-09-13 07:32:14 來源:網絡 閱讀:438 作者:313119992 欄目:編程語言

165. Compare Version Numbers

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


思路:

1.將兩個版本字符串都分割好存入vector中。

2.比較2個vector中元素的大小。

其中注意:1 == 1.0.0


class Solution {
public:
    vector<int> stringSplit(string s, const char * split)
    {
        vector<int> result;
        const int sLen = s.length();
        char *cs = new char[sLen + 1];
        strcpy(cs, s.data());
        char *p;
        char * end;
        p = strtok(cs, split);
        while (p)
        {
            printf("%s\n", p);
            string tmp(p);
            int v = static_cast<int>(strtol(tmp.c_str(),&end,10));
            result.push_back(v);
            p = strtok(NULL, split);
        }
        return result;
    }
    
    int compareVersion(string version1, string version2) {
        vector<int> vecInt1 = stringSplit(version1,".");
        vector<int> vecInt2 = stringSplit(version2,".");
        
        int i;
        for(i = 0; i < min(vecInt1.size(),vecInt2.size()); i++)
        {
            if(vecInt1[i] < vecInt2[i]) 
                return -1;
            else if(vecInt1[i] > vecInt2[i])
                return 1;
        }
        
        if( vecInt1.size() < vecInt2.size())
        {
            int j = i;
            for(;j <vecInt2.size();j++)
            {
                if(vecInt2[j] > 0)
                    return -1;
            }
            return 0;
        }
        else if(vecInt1.size() > vecInt2.size())
        {
            int j = i;
            for(;j < vecInt1.size();j++)
            {
                if(vecInt1[j] > 0)
                    return 1;
            }
            return 0;
        }
        else
            return 0;

    }
};


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

庆安县| 叙永县| 平江县| 临汾市| 文安县| 家居| 天全县| 汝南县| 锡林郭勒盟| 鸡东县| 望谟县| 安福县| 沙坪坝区| 昭觉县| 房山区| 屏南县| 望谟县| 肥东县| 华池县| 海城市| 射阳县| 民权县| 祁门县| 马鞍山市| 南召县| 邵东县| 扬州市| 辽阳县| 玉门市| 梓潼县| 绩溪县| 容城县| 兴海县| 汝南县| 突泉县| 临夏市| 阳信县| 错那县| 诏安县| 加查县| 张家口市|