【剑指offer】面试题39:数组中出现次数超过一半的数字

数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。

 

你可以假设数组是非空的,并且给定的数组总是存在多数元素。

 

示例 1:

输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2

代码:

class Solution {

    public int majorityElement(int[] nums) {

        if(nums.length==0)

        {

            return 0;

        }

        int result = nums[0];

        int count=0;

        for(int i=0;i

        {

            if(count==0&&i!=0)

            {

                result = nums[i];

            }

            if(nums[i]==result)

            {

                count++;

            }

            else

            {

                count--;

            }

        }

        return result;

    }

}

你可能感兴趣的:(剑指offer)