目录
题目
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.
解决方案
1 | public class Solution { |
注意事项
- 将数组排序,返回下标为 N/2 的元素即可。