zoukankan      html  css  js  c++  java
  • 645. Set Mismatch

    The set S originally contains numbers from 1 to n. But unfortunately, due to the data error, one of the numbers in the set got duplicated to another number in the set, which results in repetition of one number and loss of another number.

    Given an array nums representing the data status of this set after the error. Your task is to firstly find the number occurs twice and then find the number that is missing. Return them in the form of an array.

    Example 1:

    Input: nums = [1,2,2,4]
    Output: [2,3]
    

     Note:

    1. The given array size will in the range [2, 10000].
    2. The given array's numbers won't have any order.

    题目含义:1到n的等差递增数列,然而给的这个数列,有一个值重复了,也就是多了一个值,少了一个值。任务就是找出多了哪个值,少了哪个值

    方法一:

     1     public int[] findErrorNums(int[] nums) {
     2         int[] res = new int[2];
     3         for (int i : nums) {
     4             if (nums[Math.abs(i) - 1] < 0) res[0] = Math.abs(i);
     5         else nums[Math.abs(i) - 1] *= -1;
     6         }
     7         for (int i=0;i<nums.length;i++) {
     8             if (nums[i] > 0) res[1] = i+1;
     9         }
    10         return res;        
    11     }

    方法二:先求出1到n的总和,然后依次做减法

     1     public int[] findErrorNums(int[] nums) {
     2         Set<Integer> set = new HashSet<>();
     3         int duplicate = 0, n = nums.length;
     4         long sum = (n * (n+1)) / 2;
     5         for(int i : nums) {
     6             if(set.contains(i)) duplicate = i;
     7             sum -= i;
     8             set.add(i);
     9         }
    10         return new int[] {duplicate, (int)sum + duplicate};
    11     }
  • 相关阅读:
    form 元素横向排列
    mysql5.6 主从同步
    centos iptables
    angular 数据绑定
    angular路由 模块 依赖注入
    angular $scope对象
    angular前端开发环境
    使用STM32CubeMX生成RTC工程[闹钟中断2]
    利用STM32CubeMX生成HID双向通讯工程
    使用STM32CubeMX生成RTC工程[秒中断]
  • 原文地址:https://www.cnblogs.com/wzj4858/p/7701831.html
Copyright © 2011-2022 走看看