摘要:
一般想到的,将所有字符串是按字典序从小到大依次排下去。 但其实是错的,比如 b , ba按这个思想排出来,是 bba,但其实最小的是bab,就要改一下比较策略了,改成拼接之后,比较谁小。 int cmp(string s1,string s2) { return s1 + s2 < s2 + s1; 阅读全文
摘要:
LintCode 433: https://www.lintcode.com/problem/number-of-islands/description LintCode 434: https://www.lintcode.com/problem/number-of-islands-ii/descr 阅读全文