leetcode:求众数 题目描述:给定一个大小为n的数组,找到其中的众数。众数是指在数组中出现次数大于⌊ n/2 ⌋(下取整)的元素。 你可以假设数组非空,并且给定数组总是存在众数 例子:数组[3,2,3] 众数:3 数组[2,1,1,1,2,2,2] 众数:2 代码class Solution { public int majorityElement(int[] nums) { //排序后,利用众数个数大于 ⌊ n/2 ⌋原理计算 Arrays.sort(nums); int n=nums.length; return nums[n/2]; } }