溫馨提示×

字符排序c語言與Python的比較

小樊
85
2024-07-09 14:44:23
欄目: 編程語言

在C語言中,對字符進(jìn)行排序通常需要使用標(biāo)準(zhǔn)庫函數(shù)qsort()來實(shí)現(xiàn),需要自定義比較函數(shù)來指定排序規(guī)則。例如:

#include <stdio.h>
#include <stdlib.h>

int compare(const void *a, const void *b) {
    return (*(char*)a - *(char*)b);
}

int main() {
    char str[] = "cba";
    int n = sizeof(str) / sizeof(str[0]);
    
    qsort(str, n-1, sizeof(char), compare);
    
    printf("Sorted string: %s\n", str);
    
    return 0;
}

在Python中,對字符進(jìn)行排序更加簡單直接,可以直接使用sorted()函數(shù)來排序,也可以使用字符串的join()方法來將排序后的字符連接起來。例如:

s = "cba"
sorted_str = ''.join(sorted(s))

print("Sorted string:", sorted_str)

可以看到,Python中對字符進(jìn)行排序的實(shí)現(xiàn)更加簡單和直觀,而C語言中需要更多的代碼來實(shí)現(xiàn)同樣的功能。

0