gpt4 book ai didi

c - C语言中如何使用strstr()函数比较字符数组中的内容?

转载 作者:太空宇宙 更新时间:2023-11-04 01:58:23 25 4
gpt4 key购买 nike

这个小程序的目的是比较两个单独文件(file1.csv 和 file2.csv)中的字符串,并将其结果提供给 file3.csv。如果在 file1.csv 中找到 file2.csv 中的字符串,则程序将 file1.csv 中的字符串复制到 file3.csv。

file1.csv 的内容(6 列):

10000001    text1   text1   text1   text1   text1
10000002 text2 text2 text2 text2 text2
10000003 text3 text3 text3 text3 text3
10000004 text4 text4 text4 text4 text4
10000005 text5 text5 text5 text5 text5
10000006 text6 text6 text6 text6 text6
10000007 text7 text7 text7 text7 text7
10000008 text8 text8 text8 text8 text8
10000009 text9 text9 text9 text9 text9
10000010 text10 text10 text10 text10 text10
10000011 text11 text11 text11 text11 text11
10000012 text12 text12 text12 text12 text12
10000013 text13 text13 text13 text13 text13
10000014 text14 text14 text14 text14 text14
10000015 text15 text15 text15 text15 text15
10000016 text16 text16 text16 text16 text16
10000017 text17 text17 text17 text17 text17
10000018 text18 text18 text18 text18 text18
10000019 text19 text19 text19 text19 text19
10000020 text20 text20 text20 text20 text20
10000021 text21 text21 text21 text21 text21
10000022 text22 text22 text22 text22 text22
10000023 text23 text23 text23 text23 text23
10000024 text24 text24 text24 text24 text24
10000025 text25 text25 text25 text25 text25

file2.csv的内容(只有一栏):

10000001
10000003
10000004
10000006
10000007
10000008
10000009
10000011
10000012
10000015
10000025

预期结果将是:

10000001    text1   text1   text1   text1   text1
10000003 text3 text3 text3 text3 text3
10000004 text4 text4 text4 text4 text4
10000006 text6 text6 text6 text6 text6
10000007 text7 text7 text7 text7 text7
10000008 text8 text8 text8 text8 text8
10000009 text9 text9 text9 text9 text9
10000011 text11 text11 text11 text11 text11
10000012 text12 text12 text12 text12 text12
10000015 text15 text15 text15 text15 text15
10000025 text25 text25 text25 text25 text25

我使用了strstr()函数来比较字符串,但是没有用,代码如下:

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

int main()
{
char line[150][80] = {0};
char line2[150][80] = {0};

int i = 0, b = 0;

FILE *file1 = fopen("file1.csv", "r");
FILE *file2 = fopen("file2.csv", "r");
FILE *file3 = fopen("file3.csv", "w");

while (fscanf(file1, "%79[^\n]\n", line[i]) != EOF) {
i++;
while (fscanf(file2, "%79[^\n]\n", line2[b]) != EOF) {
b++;
}
if (strstr(line[i],line2[b]))
fprintf(file3, "%s\n", line[i]);
}

fclose(file1);
fclose(file2);
fclose(file3);
return 0;
}

提前致谢!

最佳答案

正如 unwind 和其他评论者正确指出的那样,在每次 file1.csv 阅读迭代时重新阅读 file2.csv 是没有意义的。只需读取一次并循环遍历 line2[] 数组即可。

其次,您可能会逐行处理 file1.csv 并在处理完后立即忘记当前行的内容,因此制作 line[][] 数组也不是必需的。

这是你修改后的代码:

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

#define CHECK_FILE_OPEN(file, name) \
if (file == NULL) { \
printf("Failed to open %s\n", name); \
return 1; \
}

int main()
{
char line[150] = "";
char line2[150][80] = {0};

int b = 0;
int filterCount = 0;

FILE *file1 = fopen("file1.csv", "r");
CHECK_FILE_OPEN(file1, "file1.csv");
FILE *file2 = fopen("file2.csv", "r");
CHECK_FILE_OPEN(file2, "file2.csv");
FILE *file3 = fopen("file3.csv", "w");
CHECK_FILE_OPEN(file3, "file3.csv");

while (fscanf(file2, "%79[^\n]\n", line2[b]) != EOF) {
b++;
}
filterCount = b;
while (fscanf(file1, "%79[^\n]\n", line) != EOF) {
for (b = 0; b < filterCount; b++) {
if (strstr(line,line2[b])) {
fprintf(file3, "%s\n", line);
break;
}
}
}

fclose(file1);
fclose(file2);
fclose(file3);
return 0;
}

但是,您的输入数据似乎足够具体,可以做出一些优化假设。特别是,(a) 所有文件都按第一列值排序,并且 (b) 第二列只是第一列的缩减副本(根据行索引值)。

在这种情况下,您可能希望实现一次处理。逐行扫描两个文件,比较索引值。然后在每次迭代时前进到第一个文件的下一行。从第二个文件开始,只有在第一个文件中找到当前行时才移动到下一行。

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

#define CHECK_FILE_OPEN(file, name) \
if (file == NULL) { \
printf("Failed to open %s\n", name); \
return 1; \
}

int main()
{
char line1[150] = "";
char line2[150] = "";

FILE *file1 = fopen("file1.csv", "r");
CHECK_FILE_OPEN(file1, "file1.csv");
FILE *file2 = fopen("file2.csv", "r");
CHECK_FILE_OPEN(file2, "file2.csv");
FILE *file3 = fopen("file3.csv", "w");
CHECK_FILE_OPEN(file3, "file3.csv");

bool eof1 = fscanf(file1, "%79[^\n]\n", line1) == EOF;
bool eof2 = fscanf(file2, "%79[^\n]\n", line2) == EOF;

while (!eof1 && !eof2) {
if (strstr(line1, line2)) {
fprintf(file3, "%s\n", line1);
eof2 = fscanf(file2, "%79[^\n]\n", line2) == EOF;
}
eof1 = fscanf(file1, "%79[^\n]\n", line1) == EOF;
}

fclose(file1);
fclose(file2);
fclose(file3);
return 0;
}

关于c - C语言中如何使用strstr()函数比较字符数组中的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30568730/

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