Description Link to heading
Given a list of non-negative integers nums
, arrange them such that they form the largest number
and return it.
Since the result may be very large, so you need to return a string instead of an integer.
Example 1:
Input: nums = [10,2]
Output: "210"
Example 2:
Input: nums = [3,30,34,5,9]
Output: "9534330"
Constraints:
1 <= nums.length <= 100
0 <= nums[i] <= 10⁹
Solution Link to heading
First, we change the vector<int>
to vector<string>
. Then if s1 + s2 >= s2 + s1
, make sure that s1
is in front of s2
, we sort vector<string>
by the rule.
Note the case that all the elements in the array is $0$.
Code Link to heading
class Solution {
public:
string largestNumber(vector<int> &nums) {
int sum = 0;
for (int i = 0; i < nums.size(); i++) {
if (nums[i] != 0) {
sum += nums[i];
break;
}
}
if (sum == 0) {
return "0";
}
vector<string> tmp;
for (int &num : nums) {
tmp.push_back(std::to_string(num));
}
auto cmp = [&](string &s1, string &s2) {
return s2 + s1 <= s1 + s2;
};
std::sort(tmp.begin(), tmp.end(), cmp);
string res;
for (auto &s : tmp) {
res += s;
}
return res;
}
};