179. Largest Number
sort(num.begin(), num.end(),
[](int a, int b){ return to_string(a)+to_string(b) > to_string(b)+to_string(a); }
);
sort vector - leetcode 新用法
原文:http://www.cnblogs.com/93scarlett/p/6268908.html