LintCode 587 Two Sum - Unique pairs

思路1

排序+双指针。指针移动的过程中,遇到了相同的元素就直接跳过。
时间复杂度O(nlogn)
空间复杂度O(1)

代码1

public class Solution {
    /**
     * @param nums: an array of integer
     * @param target: An integer
     * @return: An integer
     */
    public int twoSum6(int[] nums, int target) {
        // write your code here
        int result = 0;
        if (nums.length == 0) {
            return result;
        }
        Arrays.sort(nums);
        int left = 0, right = nums.length - 1;
        while (left < right) {
            int sum = nums[left] + nums[right];
            if (sum == target) {
                result++;
                left++;
                right--;
                while (left < right && nums[left] == nums[left - 1]) {
                    left++;
                }
                while (left < right && nums[right] == nums[right + 1]) {
                    right--;
                }
            } else if (sum < target) {
                left++;
            } else {
                right--;
            }
        }
        return result;
    }
}

思路2

不排序,使用hashmap来做。由于target确定后,再确定一个元素,另一个元素也定了,所以利用hashmap来记录某个元素是否被使用,从而达到去重的目的(key:元素; value:bool,是否被使用)。
时间复杂度O(n)
空间复杂度O(n)

代码2

public class Solution {
    /**
     * @param nums: an array of integer
     * @param target: An integer
     * @return: An integer
     */
    public int twoSum6(int[] nums, int target) {
        // write your code here
        HashMap<Integer, Boolean> map = new HashMap<>();
        int count = 0;
        
        for (int n : nums) {
            int rest = target - n;
            if (map.containsKey(rest)) {
                if (!map.get(rest)) {
                    map.put(n, true);
                    map.put(rest, true);
                    count++;
                }
            } else {
                map.put(n, false);
            }
        }
        
        return count;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值