c++ only 4 lines

把数组排成最小的数

http://www.nowcoder.com/questionTerminal/8fecd3f8ba334add803bf2a06af1b993

class Solution {
public:
    struct Less {
        bool operator()(int a, int b) {
            return stoi(to_string(a)+to_string(b)) < stoi(to_string(b)+to_string(a));
        }
    };

    string PrintMinNumber(vector<int> numbers) {
        sort(numbers.begin(), numbers.end(), Less());
        string result;
        for (size_t i = 0; i < numbers.size(); ++ i) result+=to_string(numbers[i]);
        return result;
    }
};
全部评论

相关推荐

牛客92804383...:在他心里你已经是他的员工了
点赞 评论 收藏
分享
积极的小学生不要香菜:你才沟通多少,没500不要说难
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务