题解 | #数组中重复的数字#

数组中重复的数字

https://www.nowcoder.com/practice/6fe361ede7e54db1b84adc81d09d8524

import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     * 重复数字,则将数字用于数组下标,对应的值为true
     * 
     * @param numbers int整型一维数组 
     * @return int整型
     */
    public int duplicate (int[] numbers) {
        // 通过一个散列函数,映射对应的空间
        int size = numbers.length;
        boolean[] results = new boolean[size];
        for(int i = 0; i<size; i++){
            int num = numbers[i];
            if(num > 10000){
                return -1;
            }
            if(results[num]){
                return num;
            }else {
                results[num] = true;
            }
        }
        return -1;
    }
}

全部评论

相关推荐

拉丁是我干掉的:把上海理工大学改成北京理工大学。成功率增加200%
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务