c:分段错误(选择排序)

时间:2012-12-15 02:12:58

标签: c arrays sorting

#include<stdio.h>
void selsort(int a[],int s)
{
    int min,temp,i,j;       
    for(i = 0; i < s ; i++)
    {
        min = 0;
        for(j = i+1 ; j < s; j++)
        {
            if(min > a[j])
            {
                min = j;
            }
        }
        temp = a[i];
        a[i] = a[min];
        a[min] = temp;
        for (j=0;j<s;j++)
        {
            printf("%d",a[i]);
        }
        printf("\n");   

    }
}
main()
{
        int i,a[5];
        int size = 5;
        printf("Enter elements of the array");
        for(i=0;i<size;i++)
        {
            scanf("%d",&a[i]);
        }
        selsort(a[5],size);
}

错误如下:

selsort.c:35:2: warning: passing argument 1 of ‘selsort’ makes pointer from integer without a cast [enabled by default]
selsort.c:2:1: note: expected ‘int *’ but argument is of type ‘int’

有关如何避免此问题的任何提示将非常有用

2 个答案:

答案 0 :(得分:3)

你应该像这样调用你的函数:

selsort(a, size);

a[5]表示“索引为5的元素”(顺便提到数组末尾,int a[5]中最大的合法元素位于索引4)。

您还应该替换

min = 0;

min = i;

并像这样使用它:

if(a[min] > a[j]) ...

答案 1 :(得分:0)

在函数调用selsort(a[5], size);中,您只传递a的第5个[不存在]成员。你想要selsort(a, size);