169. 多数元素文章来源:https://www.toymoban.com/news/detail-636750.html
2023-8-9 10:43:27
public int majorityElement(int[] nums) {
int minTimes = nums.length / 2;
Arrays.sort(nums);
int pre = 0;
int last = pre;
while (last < nums.length) {
if (nums[pre] != nums[last]) {
if (last - pre > minTimes) {
return nums[pre];
} else {
pre = last;
}
}
last++;
}
return nums[pre];
}
摩尔投票法:在一个群体里面,哪个数最多文章来源地址https://www.toymoban.com/news/detail-636750.html
到了这里,关于【LeetCode】169. 多数元素的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!