Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array.
For example,
Given nums = [0, 1, 3] return 2.
Note:
Your algorithm should run in linear runtime complexity. Could you implement it using only constant extra space complexity?
Credits:
Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.
实现:
class Solution {
public:
int missingNumber(vector<int>& nums) {
int n = (1+nums.size())*nums.size()/2;
for (int i = 0; i < nums.size(); i++) {
n -= nums[i];
}
return n;
}
};
通过给定数组中包含从0到n的n个不同数字,本文介绍了一种算法来找出缺失的数字。该方法运行时间复杂度为O(n),且仅使用常数额外空间,实现了高效查找缺失数字的功能。

688

被折叠的 条评论
为什么被折叠?



