229. Majority Element II
Posted 蓝色地中海
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了229. Majority Element II相关的知识,希望对你有一定的参考价值。
Problem statement:
Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋
times. The algorithm should run in linear time and in O(1) space.
Solution:
以上是关于229. Majority Element II的主要内容,如果未能解决你的问题,请参考以下文章
229 Majority Element II 求众数 II