最大数的求法核心还是在于sort函数的编写 public: bool cmp(string a,string b){ return a + b > b + a; } string solve(vector<int>& nums) { // write code here string str; sort(nums.begin(),nums.end(),[](int const& x,int const& y){//方法一:lambd...