数値をバブルソートし、セグメンテーション違反が発生し続ける関数を作成しようとしています。なにか提案を?
void bubblesort(struct Record *ptr, int records, int (*fcomp)(const void *, const void *))
{
long c, d, i;
struct Record *sa, *sb, sc;
for (c = 0 ; c < ( records - 1 ); c++)
{
for (d = 0 ; d < records - c - 1; d++)
{
for(i = 0; i < records - 1; i++)
{
if (fcomp(ptr+i, ptr+i+1) <= 0)
{
/* Swapping */
sc = sa[d];
sa[d] = sb[d+1];
sb[d+1] = sc;
}
}
}
}
}