leetcode-剑指39-OK

language: C

address

// 考研做过,不解释
int majorityElement(int* nums, int numsSize){
    int ans,count = 0;
    for(int i = 0; i < numsSize; i++){
        if(count==0){
            ans = nums[i];
            count++;
        }else if(ans==nums[i]){
            count++;
        }else{
            count--;
        }
    }
    return ans;
}
上一篇:第39期:小白一看就会的 BST 删除!


下一篇:html标签反转义