我在运行程序时不断遇到分段错误。分段错误通常应该发生在程序尝试访问计算机无法物理寻址的内存时。我无法确定问题出在哪里。
编辑:我更改了扫描变量时添加的&,但这并不能解决分段错误的问题
这是我的代码:
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
void userEnter(int*pattern, int n);
void print( int * s, int n);
void recurs( int * s, int * a, int n, int wpegs, int bpegs);
bool Done (int*s);
bool bPegs(int*a ,int*s, int bpegs, int wpegs, int n);
bool wPegs(int* modcom, int* modoriginal, int*s, int wpegs, int w);
void change(int*modoriginal, int*modcom, int i, int k, int w);
int main(void)
{
int i, n, bpegs, wpegs;
printf("Enter the pattern length: ");
scanf("%d",&n);
int *a = (int*)malloc((n)*(sizeof(int)));
printf("Input the guess pattern: ");
int pattern[n];
userEnter(pattern, n);
printf("Enter the number of black pegs in the feedback: ");
scanf("%d",&bpegs);
printf("Enter the number of white pegs in the feedback: ");
scanf("%d",&wpegs);
printf("The possible key patterns are: ");
for(i=0; i<=n-1; i++)
{
a[i]=0;
}
print(a, n);
recurs(a, pattern, n, wpegs, bpegs);
}
void userEnter(int*pattern, int n)
{
char input[n];
scanf("%s",&input);
int i;
for(i = 0; i < n-1; i++)
{
pattern[i] = input[i]-65;
}
}
void print( int * s, int n)
{
int i;
printf( "n" );
for( i = n-1; i >= 0; i-- )
{
printf( "%c", ( s[ i ] + 65 ) );
}
}
void recurs( int * s, int * a, int n, int wpegs, int bpegs)
{
int i;
if(Done(s))
{
print( s, n);
printf( "nAccomplisshed!n" );
}
else{
s[ 0 ] += 1;
for( i = 0; i < n-1; i++ )
{
if( s[ i ] == 6 ){
s[ i ] = 0;
s[ i + 1 ] += 1;
}
}
if(bPegs(a ,s, bpegs, wpegs, n))
{
print( s, n);
}
recurs(s, a, n, wpegs, bpegs);
}
}
bool Done (int*s)
{
int i;
bool done=true;
for (i=0;i<=11;i++)
{
if(s[i]!=5)
{
done=false;
}
}
return done;
}
bool bPegs(int*a ,int*s, int bpegs, int wpegs, int n)
{
int i,j,c=0;
bool d = false;
for(i=0; i<n-1; i++)
{
if(a[i]==s[i])
{
c++;
}
}
int x =n-c;
int* modcom;
int*modoriginal;
modcom=(int*)malloc((x)*(sizeof(int)));
modoriginal=(int*)malloc((x)*(sizeof(int)));
int w=0;
for(j=0; j<n-1; j++)
{
if(a[j]!=s[j])
{
modcom[w]=s[j];
modoriginal[w]=a[j];
w++;
}
}
if(c==bpegs)
{
d = wPegs(modcom, modoriginal, s, wpegs, w);
}
return d;
}
bool wPegs(int*modcom, int*modoriginal, int*s, int wpegs, int w)
{
int i, k, count=0;
for(i=0; i<=w; i++)
{
for(k=0; k<=w; k++)
{
if (modoriginal[i]==modcom[k])
{
count++;
change(modoriginal, modcom, i, k, w);
}
}
}
if(wpegs==count)
{
return true;
}
else
{
return false;
}
}
void change(int*modoriginal, int*modcom, int i, int k, int w)
{
int c, o;
for(c=i-1; c<w-1; c++)
{
modoriginal[c]=modoriginal[c+1];
}
for(o=k-1;o<w-1;o++)
{
modcom[o]=modcom[o+1];
}
}
因为您没有正确传递参数scanf
,如编译器报告的那样:
13421173.c:25: warning: format ‘%d’ expects type ‘int *’, but argument 2 has type ‘int’
13421173.c:25: warning: format ‘%d’ expects type ‘int *’, but argument 2 has type ‘int’
13421173.c:27: warning: format ‘%d’ expects type ‘int *’, but argument 2 has type ‘int’
13421173.c:27: warning: format ‘%d’ expects type ‘int *’, but argument 2 has type ‘int’
正确的用法如下所示:
scanf("%d", &bpegs);
我还没有检查所有代码,但你应该改变
scanf("%d",bpegs);
printf("Enter the number of white pegs in the feedback: ");
scanf("%d",wpegs);
自
scanf("%d",&bpegs);
printf("Enter the number of white pegs in the feedback: ");
scanf("%d",&wpegs);
即将指针传递给您希望 scanf 写入的整数
scanf
的参数是一种格式,也是指向相同格式的变量的指针。在整数的情况下%d
需要 &d,其中 d 的类型为 int
.对于一个字符串,就像你的函数userEnter()
中的输入一样,%s
需要一个类型char*
,输入是一个数组,这意味着没有大括号的输入已经是一个指针,所以你只写
scanf("%s",input);
此外,您还应该检查for
中的限制。例如,在bPegs()
中,您正在为大小为 x = n - c 的 modcom 和 modoriginal 分配内存,而在下一个 cicle 中,您的限制变为 n-1,除非 c = 1,否则会产生分段错误。
像这样:
scanf("%d",bpegs);
从 int 到 int 指针进行隐式强制转换,以便读取整数将写入某个随机地址。此随机地址取决于未初始化的 bpeg 的值。如果你多次使用 scanf,那么你必须纠正所有这些错误,并传递要更改的值的地址,而不是值。