Leetcode刷题100天—268. 丢失的数字(哈希表)—day14

Posted 神的孩子都在歌唱

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题100天—268. 丢失的数字(哈希表)—day14相关的知识,希望对你有一定的参考价值。

前言:

作者:神的孩子在歌唱

大家好,我叫运智

给定一个包含 [0, n] 中 n 个数的数组 nums ,找出 [0, n] 这个范围内没有出现在数组中的那个数。

进阶:

你能否实现线性时间复杂度、仅使用额外常数空间的算法解决此问题?

示例 1:

输入:nums = [3,0,1]
输出:2
解释:n = 3,因为有 3 个数字,所以所有的数字都在范围 [0,3] 内。2 是丢失的数字,因为它没有出现在 nums 中。

示例 2:

输入:nums = [0,1]
输出:2
解释:n = 2,因为有 2 个数字,所以所有的数字都在范围 [0,2] 内。2 是丢失的数字,因为它没有出现在 nums 中。

示例 3:

输入:nums = [9,6,4,2,3,5,7,0,1]
输出:8
解释:n = 9,因为有 9 个数字,所以所有的数字都在范围 [0,9] 内。8 是丢失的数字,因为它没有出现在 nums 中。

示例 4:

输入:nums = [0]
输出:1
解释:n = 1,因为有 1 个数字,所以所有的数字都在范围 [0,1] 内。1 是丢失的数字,因为它没有出现在 nums 中。

提示:

n == nums.length
1 <= n <= 104
0 <= nums[i] <= n
nums 中的所有数字都 独一无二

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/missing-number
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

package 哈希表;

import java.util.HashSet;
import java.util.Set;

/*
 * https://leetcode-cn.com/problems/missing-number/
 */
public class _268_丢失的数字 {
	public int missingNumber(int[] nums) {
//		设置一个哈希函数
		Set<Integer> map=new HashSet<>();
//		for循环存入哈希表
		for(int num:nums) {
			map.add(num);
		}
//		for循环比较
		for(int i=0;i<nums.length;i++) {
			if (map.contains(i)) {
				return i;
			}
		}
		return -1;
	}
}

本人csdn博客:https://blog.csdn.net/weixin_46654114

转载说明:跟我说明,务必注明来源,附带本人博客连接。

以上是关于Leetcode刷题100天—268. 丢失的数字(哈希表)—day14的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题Python268. 丢失的数字

LeetCode Algorithm 268. 丢失的数字

数学与数字6:LeetCode268. 丢失的数字

LeetCode刷题模版:257258260263264

LeetCode刷题模版:257258260263264

LeetCode:268. 丢失的数字1404. 将二进制表示减到 1 的步骤数