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中重复出现的数字、缺失的数字

  • 相关阅读:
    Java EE 在网页输出九九乘法表、三角形、菱形
    Java EE 在网页输出九九乘法表
    格式化时间(SimpleDateFormat)
    Java代码规范性
    Scanner
    数据库怎么删除相同的内容
    连接池 ----单例模式
    多态和接口
    第一个JAVA应用
    继承
  • 原文地址:https://www.cnblogs.com/msymm/p/8248373.html
Copyright © 2011-2022 走看看