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;
    }
};
全部评论

相关推荐

在笔试的柠檬精很想去...:兄弟们,你们这个大厂,中厂,小厂怎么定义的 初来驾到,别笑话我,只要能学到本事,不管大厂小厂都可以,但是别进到黑厂就行
找实习记录
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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