6

私は他の言語でこの問題に対する多くの答えを見ていますが、文字列として与えられた2つのバージョン番号を比較する方法を見つけようとしています。例えば

str1 = "141.1.23"
str2 = "141.1.22"

文字列内の整数値を比較して、どちらが大きいかを確認する方法を見つけようとしています。(この場合、str1の方が大きくなります)。atoiやstrtokと組み合わせて使うことを考えましたが、一度に2つの文字列をトークン化することはできません。何かアドバイス?

4

6 に答える 6

12

Cにあるのに、なぜ人々はそのような複雑なソリューションを求めて努力するのか、本当に疑問に思いますsscanf。すべてのユースケースの99%で機能する、その問題に対する非常に単純なソリューションを次に示します。

int compVersions ( const char * version1, const char * version2 ) {
    unsigned major1 = 0, minor1 = 0, bugfix1 = 0;
    unsigned major2 = 0, minor2 = 0, bugfix2 = 0;
    sscanf(version1, "%u.%u.%u", &major1, &minor1, &bugfix1);
    sscanf(version2, "%u.%u.%u", &major2, &minor2, &bugfix2);
    if (major1 < major2) return -1;
    if (major1 > major2) return 1;
    if (minor1 < minor2) return -1;
    if (minor1 > minor2) return 1;
    if (bugfix1 < bugfix2) return -1;
    if (bugfix1 > bugfix2) return 1;
    return 0;
}

ここで、試してみてください: https://ideone.com/bxCjsb

于 2019-05-21T15:09:04.003 に答える
5

一度に 2 つの文字列をトークン化できないことはわかっています。

幸いなことに、次のことを行う必要はありません: 文字列を受け取り、それを 3 つの整数で解析する関数を作成しますstrtok_r(リエントラント バージョンを使用すると、はるかに安全になります)。

strunct version_t {
    int major;
    int minor;
    int build;
};

version_t parse_ver(const char* version_str) {
    version_t res;
    // Use strtok_r to split the string, and atoi to convert tokens to ints
    return res;
}

parse_verこれで、2 回呼び出して 2 つのversion_t値を取得し、それらを並べて比較できます。

PS 常に特定の長さになるまで数値の先頭にゼロを埋め込むという規則を採用する場合、つまり、 を書き"141.1.03"、 を書かないよう"141.1.3"にする場合、整数比較を辞書式の比較に置き換えることができます。

于 2013-02-24T21:50:39.390 に答える
4

次のルーチンは、本物の番号で構成されているバージョン番号文字列を比較します。利点は、区切り文字が重要ではないことです。たとえば、141.01.03、141:1:3、さらには141A1P3でも動作します。また、141.1.3が141.1.3.1より前になるように、不一致のテールを処理します。

#include <assert.h>
#include <stdlib.h>

int versionCmp( char *pc1, char *pc2)
{
    int result = 0;
    /* loop through each level of the version string */
    while (result == 0) {
        /* extract leading version numbers */
        char* tail1;
        char* tail2;
        unsigned long ver1 = strtoul( pc1, &tail1, 10 );
        unsigned long ver2 = strtoul( pc2, &tail2, 10 );
        /* if numbers differ, then set the result */
        if (ver1 < ver2)
            result = -1;
        else if (ver1 > ver2)
            result = +1;
        else {
            /* if numbers are the same, go to next level */
            pc1 = tail1;
            pc2 = tail2;
            /* if we reach the end of both, then they are identical */
            if (*pc1 == '\0' && *pc2 == '\0')
                break;
            /* if we reach the end of one only, it is the smaller */
            else if (*pc1 == '\0')
                result = -1;
            else if (*pc2 == '\0')
                result = +1;
            /*  not at end ... so far they match so keep going */
            else {
                pc1++;
                pc2++;
            }
        }
    }
    return result;
}

int main( void )
{
    assert(versionCmp("1.2.3" , "1.2.3" ) == 0);
    assert(versionCmp("1.2.3" , "1.2.4" )  < 0);
    assert(versionCmp("1.2.4" , "1.2.3" )  > 0);
    assert(versionCmp("10.2.4", "9.2.3" )  > 0);
    assert(versionCmp("9.2.4",  "10.2.3")  < 0);
    /* Trailing 0 ignored. */
    assert(versionCmp("01", "1") == 0);
    /* Any single space delimiter is OK. */
    assert(versionCmp("1a2", "1b2") == 0);
    return EXIT_SUCCESS;
}

strtoulsをstrcspnsとaに置き換えると、strncmp数値以外のバージョンの「数値」を比較するために使用できますが、区切り文字はドットである必要があります。たとえば、141.3A.1は141.3Bの前にソートします。

...
while (result == 0) {
    /* ignore leading zeroes */
    pc1 += strspn( pc1, "0" );
    pc2 += strspn( pc2, "0" );
    /* extract leading version strings */
    int len1 = strcspn( pc1, "." );
    int len2 = strcspn( pc2, "." );
    /* if one is shorter than the other, it is the smaller version */
    result = len1 - len2;
    /* if the same length then compare as strings */
    if (result == 0)
        result = strncmp( pc1, pc2, len1 );
    if (result == 0) {
        pc1 += len1;
        pc2 += len2;
        if (*pc1 == '\0' && *pc == '\0')
            ...
于 2013-02-25T02:57:37.070 に答える
0

提案どおり strtok を使用できます。このコードを見てください。簡単にするために、C ++でベクターを使用しています。トークン化された要素を保持するために、2つの文字列の最大長に初期化された配列などの他のコンテナーまたはデータ構造を使用してください。

vector<char*> tokenize(char *s)
{
    vector<char*> svec;

    char *stp = strtok(s,".");
    while(stp != NULL)
    {
            svec.push_back(stp);
            stp = strtok(NULL,".");
    }
    cout << endl;
    return svec;

}

int version_compare(char *s1, char *s2)
{
    vector<char*> tokens_s1 = tokenize(s1);
    vector<char*> tokens_s2 = tokenize(s2);

    int st1, st2, flag, maxf,result;
    st1 = tokens_s1.size();
    st2 = tokens_s2.size();
    flag = st1 < st2 ? st1 : st2;


    for(int i=0; i < flag ;i++)
    {

            int one = *(tokens_s1[i]);
            int two = *(tokens_s2[i]);
            if(one > two)
                     return 1;
            else if(one < two)
                    return 2;
            else
                    result = 0;

    }
}

    if((st1 == st2) && (result == 0)) return 0;
    return (st1 > st2 ? 1 : 2);



}


int main()
{
    char s1[] = "1.2.3.4";
    char s2[] = "2.2.3.3.3";
    int st;
    st = version_compare(s1,s2);
    cout<<st<<endl;

}
于 2016-08-11T15:43:33.740 に答える