169. 求众数
https://leetcode-cn.com/problems/majority-element/
解法一:
先假设众数为0号元素,初始计数器为1。从1号开始遍历数组,遇到与众数相等的数,计数器+1,否则-1。当计数器为0时,更新众数为当前元素。
最后更新于
https://leetcode-cn.com/problems/majority-element/
先假设众数为0号元素,初始计数器为1。从1号开始遍历数组,遇到与众数相等的数,计数器+1,否则-1。当计数器为0时,更新众数为当前元素。
最后更新于