Q:

Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊n/2⌋ times.

You may assume that the array is non-empty and the majority element always exist in the array.

A1:

class Solution {
int[] num) {
   3:  
int major=num[0], count = 1;
int i=1; i<num.length;i++){
if(count==0){
   7:                 count++;
   8:                 major=num[i];
if(major==num[i]){
  10:                 count++;
else count--;
  12:  
  13:         }
return major;
  15:     }
  16: }

A2:

class Solution {
int[] num) {
   3:         Arrays.sort(num);
return num[num.length / 2];
   5:     }
   6: }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2021-07-07
  • 2021-05-29
  • 2021-08-13
  • 2022-01-02
猜你喜欢
  • 2021-09-21
  • 2021-07-25
  • 2021-08-04
  • 2021-10-18
  • 2021-06-19
  • 2022-12-23
相关资源
相似解决方案