每日一道算法题 字符串排序

题目

字符串排序_牛客题霸_牛客网 (nowcoder.com)

C语言

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

void fun_2024_6_24(void)
{
    int n;
    scanf("%d", &n);
    
//在堆区申请内存
/*为什么不直接char p[n][101]? 因为n是变量,数组定义不可以,但是网上说有的编译器可以*/
    char** p=(char**)malloc(n*sizeof(char *));
    for (int _ = 0; _ < n; _++)
    {
        p[_] = (char *)malloc(101 * sizeof(char));
        scanf("%s", p[_]);
        //printf("%s\n",p[_]);
    }

    
    for (int i = 0; i < n; i++)
    {
        int flag = 0;
        char tmp[101];
        for (int j = i + 1; j < n; j++)
        {
            if (strcmp(p[i], p[j]) > 0)
            {
                strcpy(tmp,p[i]);
                strcpy(p[i], p[j]);
                strcpy(p[j], tmp);
            }
            flag = 1;
        }
        if (!flag) break;
    }
    for (int _ = 0; _ < n; _++)
        printf("%s\n", p[_]);


//释放内存
    for (int _ = 0; _ < n; _++)
    {
        free(p[_]);
        p[_]=NULL;
    }

    if(!p)
    {
        free(p);
        p=NULL;
    }
        
}

int main() 
{
    fun_2024_6_24();
    return 0;
}

C++

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

void fun_2024_6_24(void)
{
    vector<string> str_v;
    string s;
    int n;
    cin >> n;
    for (int _ = 0; _ < n; _++)
    {
        cin >> s;
        str_v.push_back(s);
    }

    sort(str_v.begin(),str_v.end());

    for (int _ = 0; _ < n; _++)
        cout << str_v[_] << endl;
}

int main() 
{
   fun_2024_6_24();
    return 0;
}

Python

n=int(input())
res=[]
for _ in range(n):
    res.append(input())
res.sort()

for _ in res:
    print(_)

  • 8
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值