leetCode,Leetcode 448. Find All Numbers Disappeared in an Array

 2023-11-07 阅读 29 评论 0

摘要:Leetcode ?448. Find All Numbers Disappeared in an Array Add to List Description?Submission?Solutions Total Accepted:?31266Total Submissions:?58997Difficulty:?EasyContributors:?yuhaowang001 ? Given an array of integers where 1 ≤ a[i] ≤?n?(n?= size of

Leetcode ?448. Find All Numbers Disappeared in an Array

Description?Submission?Solutions

  • Total Accepted:?31266
  • Total Submissions:?58997
  • Difficulty:?Easy
  • Contributors:?yuhaowang001

?

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

leetCode?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]

?

bring in,?

Subscribe?to see which companies asked this question.

?

?

an,題解:

(1), 不能申請額外的空間, 只能在原數組進行swap操作了。?

(2), 根據數據的類型,大小都是處于 [1, n], 進行位置操作。

?

in、?

class Solution {
public:vector<int> findDisappearedNumbers(vector<int>& nums) {vector<int> ans;int i = 0; while(i<nums.size()){if(nums[i] != nums[ nums[i]-1 ]){swap(nums[i], nums[ nums[i]-1 ] ); }else{++i; }}for(int i=0; i<nums.size(); ++i){if(nums[i] != i+1){ans.push_back( i+1 ); }}return ans; }
};

  

?

轉載于:https://www.cnblogs.com/zhang-yd/p/6528014.html

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/5/167236.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息