HashMap方法:哈希表统计法: 遍历数组 nums ,用 HashMap 统计各数字的数量,//最终超过数组长度一半的数字则为众数。此方法时间和空间复杂度均为 O(N)O(N) public int MoreThanHalfNum_Solution(int [] array) { HashMap<Integer,Integer> map = new HashMap<>(); int max = array.length / 2; //哈希表统计法: 遍历数组 nums ,用 HashMap 统计各数字的数量, ...