gpt4 book ai didi

c - 如何根据分隔符将数组存储在三个不同的数组中

转载 作者:行者123 更新时间:2023-11-30 20:08:43 27 4
gpt4 key购买 nike

我想根据 / 作为分隔符将输入数组拆分为三个不同的数组。

我尝试过(可能是天真的)方法,通过使用 getchar 和 while 将字符读入数组并使用一个计数器,用于计算 / 出现的次数。

根据这个数字,我将使用:

if (slashcounter == 0) {
destinationarray[i++] = c;
}

将其存储到正确的数组中。完整实现如下。

请注意,我尝试仅使用 stdio.h 来执行此操作

#include <stdio.h>

char c;
char replace[80], toBeReplaced[80], input[80], testInput[80];
int i = 0;
int slashcounter = 0;

int main(){

puts("Enter a line of text: ");

while (( c = getchar()) != '\n'){

if (c == '/') {
slashcounter++;
}

if (slashcounter == 0) {
replace[i++] = c;
}

else if (slashcounter == 1) {
toBeReplaced[i++] = c;
}

else if (slashcounter == 2) {
input[i++] = c;
}


}
//debug purpose
puts("The arrays have the following content\n");
puts("replace[]:\n");
puts(replace);
puts("\n");
puts("toBeReplaced[]:\n");
puts(toBeReplaced);
puts("\n");
puts("input[]:\n");
puts(input);
printf("Slashcounter = %d\n",slashcounter);



return 0;

不幸的是,发生的情况是:第一个单词,即第一个斜杠之前的单词被正确存储,但其他两个为空。

我在这里做错了什么

当前输出与输入this/test/fails

Enter a line of text: 
this/test/fails
The arrays have the following content

replace[]:

this


toBeReplaced[]:




input[]:


Slashcounter = 2
Program ended with exit code: 0

附:我还想确保 / 不在输出数组中。

感谢您的帮助。

最佳答案

您的代码中有两个直接问题,首先您错过了添加一个空字符来结束每个子字符串,其次您在读取 ​​/时从未将索引重置为 0

其他问题是您不检查是否要从数组中写出,并且您不管理 EOF

你还一直测试slashcounter的值,这是相当昂贵的,你可以有3个循环或使用指针指向数组来填充等

也没有理由使用全局变量,它们都可以在main中是本地的

变化最小的示例:

#include <stdio.h>

int main(){
int c;
char replace[80], toBeReplaced[80], input[80];
int i = 0;
int slashcounter = 0;

puts("Enter a line of text: ");

while (( c = getchar()) != '\n') {
if (c == EOF) {
fprintf(stderr, "unexpected EOF");
return -1;
}

if (c == '/') {
if (slashcounter == 0) {
replace[i] = 0;
}
else if (slashcounter == 1) {
toBeReplaced[i] = 0;
}
else if (slashcounter == 2) {
input[i] = c;
}
i = 0;
slashcounter++;
}
else if (slashcounter == 0) {
if (i != (sizeof(replace) - 2))
replace[i++] = c;
}
else if (slashcounter == 1) {
if (i != (sizeof(toBeReplaced) - 2))
toBeReplaced[i++] = c;
}
else if (slashcounter == 2) {
if (i != (sizeof(input) - 2))
input[i++] = c;
}
}

if (slashcounter == 0) {
replace[i] = 0;
toBeReplaced[0] = 0;
input[0] = 0;
}
else if (slashcounter == 1) {
toBeReplaced[i] = 0;
input[0] = 0;
}
else if (slashcounter == 2) {
input[i] = 0;
}

//debug purpose
puts("The arrays have the following content\n");
puts("replace[]:\n");
puts(replace);
puts("\n");
puts("toBeReplaced[]:\n");
puts(toBeReplaced);
puts("\n");
puts("input[]:\n");
puts(input);
printf("Slashcounter = %d\n",slashcounter);

return 0;
}

注意,我使用 int 代表 c 来处理 EOF,并删除了无用的数组 testInput

编译和执行:

pi@raspberrypi:/tmp $ gcc -pedantic -Wall -Wextra s.c
pi@raspberrypi:/tmp $ ./a.out
Enter a line of text:
this/test/fails
The arrays have the following content

replace[]:

this


toBeReplaced[]:

test


input[]:

fails
Slashcounter = 2

关于c - 如何根据分隔符将数组存储在三个不同的数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55686996/

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