gpt4 book ai didi

c - 数组搜索 C 中的段错误

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

我有这个程序接收一个 char 数组,其中包含许多由标签限定的消息。这些“标签”是随机位于字符数组中的一系列字符。

这是一个例子:给定一个字符数组:{'a','s','t','1','m','s','g','e',' x','1','r','s','t','1','s','t','1','s','s','g','e' ,'x','1','z'};。标签 "st1" 表示消息的开头,其中包含每个字符,直到找到 "ex1" 序列,这是消息结尾的标签,并且它不断在数组中搜索指示新消息开始的下一个“st1”序列。在此示例中,消息为:"msg""st1ssg"

这是我的程序 - 我一直遇到段错误:

int main(int argc, char const *argv[])
{
char array[] = {'a','s','t','1','m','s','g','e','x','1','r','s','t','1','s','t','1','s','s','g','e','x','1','z'};
int state = 0;
int found = 0;
int i,j;
int msgStartIndex;
int msgEndIndex;
while(array[i]){
if((array[i] == 's' && state == 0) || (array[i] == 't' && state == 1) || (array[i] == '1' && state == 2) ){
state++;
if(!found && state == 3){
msgStartIndex = i+1;
found = 1;
}
}
else if(!found && (array[i] = 't' && state == 2))
state = 2;
else if(!found)
state = 0;
if((array[i] == 'e' && state == 3) || (array[i] == 'x' && state == 2) || (array[i] == '1' && state == 1) ){
state--;
if(found && state == 0){
found = 0;
msgEndIndex = i-3;
for(j=msgStartIndex; j < msgEndIndex+1; j++)
printf("%c",array[j]);
printf("\n");
}
}
else if(found && (array[i] == 'e' ) && (state == 2 || state == 1))
state = 2;
else if(found)
state = 3;
i++;
}
return 0;
}

最佳答案

你从来没有费心初始化你的循环计数器:

int i,j;

while(array[i]){

因此,您只需开始使用 i 中的随机垃圾即可。如果该垃圾恰好大于数组的长度,则 boom 运行您的程序。

关于c - 数组搜索 C 中的段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37618517/

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