我寫了下面的代碼來獲得在2 d字符數組字符數組排序
#include <stdio.h>
#include <string.h>
void swap(char *,char *);
void main() {
char a[20][20];
int Pass = 0, i = 0, j = 0, n;
printf("\nHow many elements you want to sort ? >> ");
scanf("%d", &n);
printf("\n\nEnter the elements to be sorted :\n");
for (i = 0; i < n; i++)
scanf("%s", a[i]);
for (Pass = 1; Pass < n; Pass++) {
for (j = 0; j < n - Pass; j++)
if (strcmp(a[j], a[j + 1]) < 0)
swap(a[j], a[j + 1]);
printf("\n\nPass = %d\n", Pass);
for (i = 0; i < n; i++)
printf(" %s ", a[i]);
}
}
void swap(char *a, char *b) {
char *t;
*t = *a;
*a = *b;
*b = *t;
}
排序字符串,但是,我得到的輸出
How many elements you want to sort ? >> 5
Enter the elements to be sorted :
1 2 3 4 5
Pass = 1
2 3 4 5 1
Pass = 2
3 4 5 2 1
Pass = 3
4 5 3 2 1
Pass = 4
Segmentation fault (core dumped)
爲什麼我遇到的分割故障? (相同的代碼正常工作,如果我使用一個整數數組,而不是一個字符數組的)
主必須返回'INT ' –
你的'swap'功能是錯誤的。 1)'char * t; * t = * a;':使用未初始化的變量。 2)應該交換的是一個數組而不是一個指針(或一個「char」)。 – BLUEPIXY
節省時間,啓用所有編譯器警告:'char * t; * t = * a;'應警告在初始化之前使用't'。 – chux