题意 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. 找出一个数组中的三个数,使这三个数的和为0.输出所有的组合,不能重复. 解法 最简单的思路就是跑一个三层循环,暴力枚举所有组合,很显然会超时. 然后考虑排序后跑两层循环,第三层改用二…