题解 | #图片整理#

图片整理

https://www.nowcoder.com/practice/2de4127fda5e46858aa85d254af43941

#include <stdio.h>
#include <string.h>
char str[1002];
int main() {
    fgets(str,1002,stdin);
    int len = strlen(str)-1;
    int low=0,fast=1;
    char tem='\0';

    while(str[low]!='\n')
    {
        if(str[fast]!='\n')
        {
            if(str[low]>str[fast])
            {
                tem=str[low];
                str[low] = str[fast];
                str[fast] = tem;
            } else {
                fast++;
            }
        } else {
            low++;
            fast=low+1;
        }
    }
    printf("%s",str);
    return 0;
}

全部评论

相关推荐

11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务