LeetCode 15 三数之和

Posted Starzkg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 15 三数之和相关的知识,希望对你有一定的参考价值。

https://leetcode-cn.com/problems/3sum/

解决方案

class Solution 
    public List<List<Integer>> threeSum(int[] nums) 
        int n = nums.length;
        Arrays.sort(nums);
        List<List<Integer>> ans = new ArrayList<>();
        for (int i = 0; i < n - 2; i++) 
            if (i > 0 && nums[i] == nums[i - 1]) continue;
            for (int j = i + 1; j < n - 1; j++) 
                if (j > i + 1 && nums[j] == nums[j - 1]) continue;
                int target = -nums[i] - nums[j];
                int l = j + 1, r = n - 1;
                while (l <= r) 
                    int mid = (l + r) >> 1;
                    if (nums[mid] > target) 
                        r = mid - 1;
                     else if (nums[mid] < target) 
                        l = mid + 1;
                     else 
                        ans.add(Arrays.asList(nums[i], nums[j], target));
                        break;
                    
                
            
        
        return ans;
    

以上是关于LeetCode 15 三数之和的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode15.三数之和(C++,Python)

LeetCode15.三数之和(C++,Python)

leetcode(15)三数之和+去重

LeetCode1两数之和15三数之和

LeetCode1两数之和15三数之和

LeetCode刷题15-简单-三数之和