题解 | #字符串排序#

字符串排序

https://www.nowcoder.com/practice/d2f088e655d44e4a85c16f7b99126211

#include <stdio.h>
#include <string.h>

void bubbleSort(char* s) {
    int len = strlen(s);
    char temp;
    for (int i = 0; i < len; i++) {
        for (int j = 0; j < len - 1; j++) {
            if (s[j] > s[j + 1]) {
                temp = s[j];
                s[j] = s[j + 1];
                s[j + 1] = temp;
            }
        }
    }
}

int main() {
    char s[21];
    while (scanf("%s", &s) != EOF) {
        bubbleSort(s);
        printf("%s\n", s);
    }
    return 0;
}

全部评论

相关推荐

10-15 15:00
潍坊学院 golang
跨考小白:这又不是官方
投递拼多多集团-PDD等公司10个岗位
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务