gpt4 book ai didi

arrays - 如何比较 C 中由 strdup() 创建的两个字符串数组?

转载 作者:行者123 更新时间:2023-12-02 19:00:40 25 4
gpt4 key购买 nike

我想知道如何在 C 中比较两个字符串数组

这是我的代码(比较时无法正常工作):

#include <stdio.h>
#include <string.h>

int main() {
char *splitted1[64];
char *splitted2[64];
int w1 = 0, w2 = 0;

char ph1[64];
fgets(ph1, 64, stdin);
strtok(ph1, "\n");

char ph2[64];
fgets(ph2, 64, stdin);
strtok(ph2, "\n");

char spl[] = " ";
char *ptr1 = strtok(ph1, spl);
while (ptr1 != NULL) {
splitted1[w1] = strdup(ptr1);
ptr1 = strtok(NULL, spl);
w1++;
}
char *ptr2 = strtok(ph2, spl);
while (ptr2 != NULL) {
splitted2[w2] = strdup(ptr2);
ptr2 = strtok(NULL, spl);
w2++;
}

// HERE I TRY TO COMPARE
for (int k = 0; k < w1; k++) {
for (int m = 0; m < w2; m++) {
if (splitted1[k] == splitted2[m]) {
printf("%s is on both arrays\n", splitted1[k]);
}
}
}
}

我的比较方法有什么问题吗?

提前致谢,如有重复,敬请谅解(我已经搜索过,但没有找到类似的案例)。

编辑:我在 splitted2 中没有数据。代码已修复

最佳答案

看起来您正在尝试使用 == 来比较字符串。与指针标识相比,这很少是您想要的。试试这个:

if (!strcmp(splitted1[k], splitted2[m]))

strcmp() 是字符串比较函数。如果它们相等则返回 0,因此您需要 !。它的实际工作是返回负数、0 或正数,以便您可以按字节对字符串进行排序(如果 UTF-8 这也是代码点),但通常您现在只是比较相等性并使用不同的函数进行排序(另一个主题)。

正如 IrAM 指出的那样,您的原始副本缺少一些代码,并且 splitted2 中还没有任何数据,因此这会导致未定义的行为。

关于arrays - 如何比较 C 中由 strdup() 创建的两个字符串数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65623475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com