C/C++教程

用LUA(和C++)刷PAT (Advanced Level) ——1038 Recover the Smallest Number

本文主要是介绍用LUA(和C++)刷PAT (Advanced Level) ——1038 Recover the Smallest Number,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

如果结果是0要输出0

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

bool sortFunc(const string& s1, const string& s2){
    return s1 + s2 < s2 + s1;
}

int main()
{
    int N;
    cin>>N;
    vector<string> nums(N);
    string result = "";
    
    for(int i = 0; i < N; i++)
        cin>>nums[i];
    
    sort(nums.begin(), nums.end(), sortFunc);
    
    for (auto num:nums)
        result += num;
    
    while(result.length() > 0 && result[0] == '0')
        result.erase(0, 1);
    
    cout<<(result == "" ? "0" : result)<<endl;
}
这篇关于用LUA(和C++)刷PAT (Advanced Level) ——1038 Recover the Smallest Number的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!