标签:转换 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来写的
标签:转换 int begin 其他 static har tmp print i++
原文地址:http://www.cnblogs.com/ymjyqsx/p/7233165.html