溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C++實(shí)現(xiàn)LeetCode之版本比較的示例分析

發(fā)布時(shí)間:2021-08-02 09:32:46 來(lái)源:億速云 閱讀:133 作者:小新 欄目:開(kāi)發(fā)技術(shù)

小編給大家分享一下C++實(shí)現(xiàn)LeetCode之版本比較的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

[LeetCode] 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.

Example 1:

Input: version1 = "0.1", version2 = "1.1"
Output: -1

Example 2:

Input: version1 = "1.0.1", version2 = "1"
Output: 1

Example 3:

Input: version1 = "7.5.2.4", version2 = "7.5.3"
Output: -1

Credits:
Special thanks to @ts for adding this problem and creating all test cases.

這道題調(diào)試了好久,一直不想上網(wǎng)搜別人的解法,因?yàn)楦杏X(jué)自己可以做出來(lái),改來(lái)改去最后終于通過(guò)了,再上網(wǎng)一搜,發(fā)現(xiàn)果然和別人的方法不同,小有成就感。我的思路是:由于兩個(gè)版本號(hào)所含的小數(shù)點(diǎn)個(gè)數(shù)不同,有可能是1和1.1.1比較,還有可能開(kāi)頭有無(wú)效0,比如01和1就是相同版本,還有可能末尾無(wú)效0,比如1.0和1也是同一版本。對(duì)于沒(méi)有小數(shù)點(diǎn)的數(shù)字,可以默認(rèn)為最后一位是小數(shù)點(diǎn),而版本號(hào)比較的核心思想是相同位置的數(shù)字比較,比如題目給的例子,1.2和13.37比較,我們都知道應(yīng)該顯示1和13比較,13比1大,所以后面的不用再比了,再比如1.1和1.2比較,前面都是1,則比較小數(shù)點(diǎn)后面的數(shù)字。那么算法就是每次對(duì)應(yīng)取出相同位置的小數(shù)點(diǎn)之前所有的字符,把他們轉(zhuǎn)為數(shù)字比較,若不同則可直接得到答案,若相同,再對(duì)應(yīng)往下取。如果一個(gè)數(shù)字已經(jīng)沒(méi)有小數(shù)點(diǎn)了,則默認(rèn)取出為0,和另一個(gè)比較,這樣也解決了末尾無(wú)效0的情況。代碼如下:

解法一:

class Solution {
public:
    int compareVersion(string version1, string version2) {
        int n1 = version1.size(), n2 = version2.size();
        int i = 0, j = 0, d1 = 0, d2 = 0;
        string v1, v2;
        while (i < n1 || j < n2) {
            while (i < n1 && version1[i] != '.') {
                v1.push_back(version1[i++]);
            }
            d1 = atoi(v1.c_str());
            while (j < n2 && version2[j] != '.') {
                v2.push_back(version2[j++]);
            }
            d2 = atoi(v2.c_str());
            if (d1 > d2) return 1;
            else if (d1 < d2) return -1;
            v1.clear(); v2.clear();
            ++i; ++j;
        }
        return 0;
    }
};

當(dāng)然我們也可以不使用將字符串轉(zhuǎn)為整型的atoi函數(shù),我們可以一位一位的累加,參加如下代碼:

解法二:

class Solution {
public:
    int compareVersion(string version1, string version2) {
        int n1 = version1.size(), n2 = version2.size();
        int i = 0, j = 0, d1 = 0, d2 = 0;
        while (i < n1 || j < n2) {
            while (i < n1 && version1[i] != '.') {
                d1 = d1 * 10 + version1[i++] - '0';
            }
            while (j < n2 && version2[j] != '.') {
                d2 = d2 * 10 + version2[j++] - '0';
            }
            if (d1 > d2) return 1;
            else if (d1 < d2) return -1;
            d1 = d2 = 0;
            ++i; ++j;
        }
        return 0;
    }
};

由于這道題我們需要將版本號(hào)以'.'分開(kāi),那么我們可以借用強(qiáng)大的字符串流stringstream的功能來(lái)實(shí)現(xiàn)分段和轉(zhuǎn)為整數(shù),使用這種方法寫(xiě)的代碼很簡(jiǎn)潔,如下所示:

解法三:

class Solution {
public:
    int compareVersion(string version1, string version2) {
        istringstream v1(version1 + "."), v2(version2 + ".");
        int d1 = 0, d2 = 0;
        char dot = '.';
        while (v1.good() || v2.good()) {
            if (v1.good()) v1 >> d1 >> dot;
            if (v2.good()) v2 >> d2 >> dot;
            if (d1 > d2) return 1;
            else if (d1 < d2) return -1;
            d1 = d2 = 0;
        }
        return 0;
    }
};

最后我們來(lái)看一種用C語(yǔ)言的字符串指針來(lái)實(shí)現(xiàn)的方法,這個(gè)方法的關(guān)鍵是用到將字符串轉(zhuǎn)為長(zhǎng)整型的strtol函數(shù),關(guān)于此函數(shù)的用法可以參見(jiàn)我的另一篇博客strtol 函數(shù)用法。參見(jiàn)代碼如下:

解法四:

class Solution {
public:
    int compareVersion(string version1, string version2) {
        int res = 0;
        char *v1 = (char*)version1.c_str(), *v2 = (char*)version2.c_str();
        while (res == 0 && (*v1 != '\0' || *v2 != '\0')) {
            long d1 = *v1 == '\0' ? 0 : strtol(v1, &v1, 10);
            long d2 = *v2 == '\0' ? 0 : strtol(v2, &v2, 10);
            if (d1 > d2) return 1;
            else if (d1 < d2) return -1;
            else {
                if (*v1 != '\0') ++v1;
                if (*v2 != '\0') ++v2;
            }
        }
        return res;
    }
};

以上是“C++實(shí)現(xiàn)LeetCode之版本比較的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI