zoukankan      html  css  js  c++  java
  • Math-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.
    class Solution {  
    public:  
        vector<int> findErrorNums(vector<int>& nums) {  
            vector <int> ans;  
            for (int i = 0; i < nums.size(); i++) {  
                int index = abs(nums[i]) - 1;  
                if (nums[index] > 0) {  
                    nums[index] *= -1;  
                }  
                else {  
                    ans.push_back(index + 1);  
                }  
            }  
            for (int i = 0; i < nums.size(); i++) {  
                if (nums[i] > 0) {  
                    ans.push_back(i + 1);  
                }  
            }  
            return ans;  
        }  
    };  

    求集合s中重复出现的数字、缺失的数字

  • 相关阅读:
    LINQ to Entities 查询中的标准查询运算符
    LINQ to Entities 基于方法的查询语法
    ajax 与 form 提交的区别
    i++ & ++i 区别
    sizeof 数据类型大小 32位&64位
    标准数据类型宏定义
    long & int 区别
    类函数修饰 const
    指针
    数组
  • 原文地址:https://www.cnblogs.com/msymm/p/8248373.html
Copyright © 2011-2022 走看看