以下是一個示例代碼,可以刪除重復字符并對字符進行排序:
#include <stdio.h>
#include <string.h>
void removeDuplicatesAndSort(char* str) {
int len = strlen(str);
int index = 0;
// Remove duplicates
for (int i = 0; i < len; i++) {
int j;
for (j = 0; j < index; j++) {
if (str[i] == str[j]) {
break;
}
}
if (j == index) {
str[index++] = str[i];
}
}
// Sort characters
for (int i = 0; i < index - 1; i++) {
for (int j = i + 1; j < index; j++) {
if (str[i] > str[j]) {
char temp = str[i];
str[i] = str[j];
str[j] = temp;
}
}
}
str[index] = '\0';
}
int main() {
char str[] = "hello";
// Remove duplicates and sort characters
removeDuplicatesAndSort(str);
printf("Result: %s\n", str);
return 0;
}
在上面的示例代碼中,我們首先定義了一個函數removeDuplicatesAndSort
,該函數接受一個字符串作為輸入,并刪除重復的字符,并對字符進行排序。然后在main
函數中調用這個函數,并打印處理后的結果。您可以將上面的示例代碼復制粘貼到一個C文件中,然后編譯運行,看看輸出結果。