码迷,mamicode.com
首页 > 编程语言 > 详细

剑指offer33 把数组排成最小的数

时间:2017-07-25 11:51:24      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:转换   int   begin   其他   static   har   tmp   print   i++   

正确代码

class Solution {
public:
    string PrintMinNumber(vector<int> numbers) {
        vector<string> str;
        for(int i = 0;i < numbers.size();i++){
            char ch[999];
            sprintf(ch,"%d",numbers[i]);
            str.push_back(ch);
        }
        sort(str.begin(),str.end(),cmp);
        string s;
        for(int i = 0;i < str.size();i++)
            s += str[i];
        return s;
    }
    static bool cmp(string a,string b){
        return a+b < b+a;
    }
};

如果写成这样,是错误的。因为tmp是个char,因为str这个vector是string的。

char tmp = numbers[i] + 0;
str.push_back(tmp);

如果写成这样,也是错误的。因为+‘0‘这种转换只能转换成char字符,不能转换成字符串。

string tmp = numbers[i] + 0;
str.push_back(tmp);

利用to_string函数可写

string tmp = to_string(numbers[i]);
str.push_back(tmp);

其他人也有用stringstream来写的

剑指offer33 把数组排成最小的数

标签:转换   int   begin   其他   static   har   tmp   print   i++   

原文地址:http://www.cnblogs.com/ymjyqsx/p/7233165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!