题解 | #数组中出现次数超过一半的数字#

数组中出现次数超过一半的数字

https://www.nowcoder.com/practice/e8a1b01a2df14cb2b228b30ee6a92163

O(n) 时间复杂度,题目说了肯定有解

public class Solution {
    public int MoreThanHalfNum_Solution(int [] array) {
        int res = 0, vote = 0;
        for (int i = 0; i < array.length; i ++ ) {
            if (vote == 0) {
                res = array[i];
                vote ++ ;
            } else if (res == array[i]) {
                vote ++ ;
            } else if (res != array[i]) {
                vote -- ;
            }
        }
        return res;
    }
}

全部评论

相关推荐

野猪不是猪🐗:我assume that你must技术aspect是solid的,temperament也挺good的,however面试不太serious,generally会feel style上不够sharp
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务