其他分享
首页 > 其他分享> > leetcode 268 丢失的数字

leetcode 268 丢失的数字

作者:互联网

简介

使用哈希表来表述.

code

class Solution {
public:
    int missingNumber(vector<int>& nums) {
        int n = nums.size();
        map<int, bool> m;
        for(auto it : nums){
            m[it] = true;
        }
        for(int i=0; i<=n; i++){
            if(m[i] == false){
                return i;
            }
        }
        return -1;
    }
};
class Solution {
    public int missingNumber(int[] nums) {
        int n = nums.length;
        Map<Integer, Boolean> m = new HashMap<Integer, Boolean>(); // 要使用  boolean 的封装类  以及  int 的封装类
        for(int i=0; i<n; i++){
            m.put(nums[i], true);
        }
        for(int i=0; i<=n; i++){
            if(!m.containsKey(i)){ // 不能直接使用get会报错.
                return i;
            }
        }
        return -1;
    }
}

标签:missingNumber,nums,int,class,Solution,public,丢失,268,leetcode
来源: https://www.cnblogs.com/eat-too-much/p/14789342.html