lintcode/leetcode由易至难第12题:Majority Element

来源:互联网 发布:数据库系统开发 编辑:程序博客网 时间:2024/05/20 18:44

Problem:

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.

Code:

public class Solution {    public int majorityElement(int[] nums) {        Arrays.sort(nums);        return nums[nums.length/2];    }}


原创粉丝点击