当我测试以下代码时,我不断收到分段错误。搜索网络后,我目前无法找到答案。
a = (byte *)malloc(sizeof(byte) * x ) ;
for( i = 0 ; i < x-1 ; i++ )
{
scanf("%d", &y ) ;
a[i] = y ;
}
y 和 x 都被初始化。X 是用户确定的数组大小。分段错误出现在要添加的倒数第二个整数上,我通过添加 printf("roar") 找到了这一点;在将 a[i] 设置为 y 并一次输入一个数字之前。Byte 是 unsigned char 的 typedef。
注意:我也尝试过使用
a[i] = (byte)y ;
A初始化如下
byte *a ;
如果你需要查看整个代码是这样的:
#include <stdio.h>
#include <stdlib.h>
#include "sort.h"
int p_cmp_f () ;
int main( int argc, char *argv[] )
{
int x, y, i, choice ;
byte *a ;
while( choice !=2 )
{
printf( "Would you like to sort integers?\n1. Yes\n2. No\n" ) ;
scanf("%d", &choice ) ;
switch(choice)
{
case 1:
printf( "Enter the length of the array: " ) ;
scanf( "%d", &x ) ;
a = (byte *)malloc(sizeof( byte ) * x ) ;
printf( "Enter %d integers to add to the array: ", x ) ;
for( i = 0 ; i < x -1 ; i++ )
{
scanf( "%d", &y ) ;
a[i] = y ;
}
switch( choice )
{
case 1:
bubble_sort( a, x, sizeof(int), p_cmp_f ) ;
for( i = 0 ; i < x ; i++ )
printf( "%d", a[i] ;
break ;
case 2:
selection_sort( a, x, sizeof(int), p_cmp_f ) ;
for( i = 0 ; i < x; i++ )
printf( "%d", a[i] ;
break ;
case 3:
insertion_sort( a, x, sizeof(int), p_cmp_f ) ;
for( i = 0 ; i < x ; i++ )
printf( "%d", a[i] ;
break ;
case 4:
merge_sort( a, x, sizeof(int), p_cmp_f ) ;
for( i = 0 ; i < x ; i++ )
printf( "%d", a[i] ;
break ;
case 5:
quick_sort( a, x, sizeof(int), p_cmp_f ) ;
for( i = 0 ; i < x ; i++ )
printf( "%d", a[i] ;
break ;
default:
printf("Enter either 1,2,3,4, or 5" ) ;
break ;
}
case 2:
printf( "Thank you for using this program\n" ) ;
return 0 ;
break ;
default:
printf( "Enter either 1 or 2: " ) ;
break ;
}
}
free(a) ;
return 0 ;
}
int p_cmp_f( byte *element1, byte *element2 )
{
return *((int *)element1) - *((int *)element2) ;
}