5. Leetcode 448. Find All Numbers Disappeared in an Array

Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.

Find all the elements of [1, n] inclusive that do not appear in this array.

Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.

Example:

Input:
[4,3,2,7,8,2,3,1]
 
Output:
[5,6]

思路:把数组nums中的每一个数所对应的索引的位置的数置为负数。

代码:class Solution {

public:

    vector<int> findDisappearedNumbers(vector<int>& nums) {

        vector <int> result;

        for(auto n:nums)

            nums[abs(n)-1]=-abs(nums[abs(n)-1]);

        for(int i=0;i<nums.size();i++)

            if(nums[i]>0)

                result.push_back(i+1);

        return result;

       

    }

};

posted @ 2017-04-09 21:20  蓦然闻声  阅读(140)  评论(0编辑  收藏  举报