15. 3Sum(圖解)
15. 3Sum
Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
Notice that the solution set must not contain duplicate triplets.
Example 1:
Input: nums = [-1,0,1,2,-1,-4]
Output: [[-1,-1,2],[-1,0,1]]
Example 2:
Input: nums = []
Output: []
Example 3:
Input: nums = [0]
Output: []
Solution
C++
class Solution {
public:
vector<vector<int>> threeSum(vector<int>& nums) {
vector<vector<int> > res;
int n = nums.size();
if(n < 3) return res;
sort(nums.begin(), nums.end());
for(int i = 0; i <= n - 2; ++i) {
if(i > 0 && nums[i] == nums[i-1]) continue;
int j = i+1, k = n-1;
while(j < k) {
if(nums[j] + nums[k] < -nums[i]) ++j;
else if(nums[j] + nums[k] > -nums[i]) --k;
else {
res.push_back({nums[i],nums[j],nums[k]});
while(j < k && nums[j] == nums[j+1]) ++j;
while(j < k && nums[k] == nums[k-1]) --k;
++j;
--k;
}
}
}
return res;
}
};
Explanation
相關文章
- 001-ksum 求符合條件的 k 個數 1. Two Sum/15. 3Sum/18. 4Sum/
- [LintCode] 3Sum Smaller
- Leetcode 15 3SumLeetCode
- Leetcode 16 3Sum ClosestLeetCode
- 259. 3Sum Smaller
- 輕鬆部署 Laravel 應用 | 《15. 瞭解 Envoy》Laravel
- 【學習圖片】15.影像內容分發網路
- 15.三數之和
- LeetCode 3Sum(015)解法總結LeetCode
- LeetCode 15.三數之和LeetCode
- 15.調參(Tuning hyperparameters)
- LeetCode 3Sum Closest(016)解法總結LeetCode
- 15+18、3Sum 4Sum
- 15. SPI通訊協議協議
- LeetCode - 15. 三數之和 2LeetCode
- 15.阻止觸控竊賊
- (js)leetcode 15. 三數之和JSLeetCode
- 15.模版模式設計思想模式
- 15. mac安裝多版本jdkMacJDK
- 15. 三數之和_(c語言版)C語言
- 15. 監控磁碟IO使用率
- 認真一點學 Go:15. 介面Go
- 演算法學習之一:3SUM變體演算法
- 15.百萬考生成績如何排序 - 計數排序排序
- 秒殺 2Sum 3Sum 4Sum 演算法題演算法
- 劍指 Offer 15. 二進位制中1的個數
- HashMap圖解HashMap圖解
- 圖解 vuex圖解Vue
- 圖解ConcurrentHashMap圖解HashMap
- 圖解 etcd圖解
- 圖解 Transformer圖解ORM
- 圖解 TCMalloc圖解
- 圖解Git圖解Git
- 圖解SDWebImage圖解Web
- git圖解Git圖解
- 完全圖解 HTTPS圖解HTTP
- [譯] 圖解 React圖解React
- 圖解HTTP(1)圖解HTTP