⑴ c語言排序後刪除數組中重復的數字再排序輸出
#include<stdio.h>
#include<string.h>
#defineSIZE81
voiddelete_repeat(char*str);
voidbubble_sort(char*str);
intmain()
{
charstr[SIZE];
gets(str);
delete_repeat(str);
bubble_sort(str);
puts(str);
return0;
}
//刪除重復字元
voiddelete_repeat(char*str)
{
/**判斷數組內第i個字元是否與前i-1個字元存在重復:
若重復,刪除該字元,i之後的字元下標均減1,後重新判斷新的第i個字元
若不重復,不做處理,繼續遍歷下一個
*/
for(inti=1;str[i]!='