码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode问题:缺失数字

时间:2019-03-29 00:54:15      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:als   iss   amp   span   思路   content   空间   str   序列   

给定一个包含 0, 1, 2, ..., n 中 n 个数的序列,找出 0 .. n 中没有出现在序列中的那个数。

示例 1:

输入: [3,0,1]
输出: 2

示例 2:

输入: [9,6,4,2,3,5,7,0,1]
输出: 8

说明:
你的算法应具有线性时间复杂度。你能否仅使用额外常数空间来实现?

解法1:思路:采用数列求和的方式

class Solution {
    public int missingNumber(int[] nums) {
        Arrays.sort(nums);
        int n = nums.length;
        int res = 0;
        int total =(0+ n ) * (n+1) / 2;
        int realSum = 0;
        for(int i = 0; i < n; i++)
        {
            realSum += nums[i];
        }
        return (total - realSum);
        
    }
}

解法2:思路:使用异或^运算符

**举个例子:**

  • 0 ^ 4 = 4
  • 4 ^ 4 = 0

那么,就可以不用求和,直接使用异或运算^进行**抵消**,剩下的数字就是缺失的了。

int missingNumber(vector<int>& nums) {
    int sum = nums.size();
    for (int i = 0; i < nums.size(); ++i){
        sum ^= nums[i];
        sum ^= i;
    }
    return sum;
}

leetcode问题:缺失数字

标签:als   iss   amp   span   思路   content   空间   str   序列   

原文地址:https://www.cnblogs.com/zhangchuan1001/p/10618723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!