题解 | #没有出现的编号#
没有出现的编号
https://www.nowcoder.com/practice/875d705df65c401a905f574070e09320
题目考察的知识点是:
本题考察的知识点是哈希表。
题目解答方法的文字分析:
将数据入到set中,set起排序加去重的作用,然后遍历set,小于0就取最大值;大于0就i++找最小连续的正数。
本题解析所用的编程语言:
java语言。
完整且正确的编程代码:
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @return int整型一维数组 */ public int[] findMissingAndMaxNegative (int[] nums) { // write code here HashSet<Integer> set = new HashSet<>(); int pos = 0, neg = Integer.MIN_VALUE; for (int i : nums) { if (i >= 0) { set.add(i); } else { neg = Math.max(neg, i); } } if (neg == Integer.MIN_VALUE) { neg = 0; } while (set.contains(pos + 1)) { pos++; } return new int[] {pos + 1, neg}; } }#题解#