zoukankan      html  css  js  c++  java
  • leetcode| Majority Element

    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.

    题目:意思是给你一个这样的数组,怎样的呢?这个数组里面有一个元素出现的次数有n/2次,n表示数组的长度

    思路:hashmap那种做法就不提了,给大家一种新的解法,这种解法抓住了题目的每一个有用的信息,先上代码,再说明思路

    public int majorityElement(int[] nums) {

      int major = nums[0],count=1,len = nums.length;
      for(int i = 1;i<len;i++){
        if(count == 0){
          count++;
          major = nums[i];
        }else if(nums[i] == major){
          count++;
        }else{

         count--;

        }
      }
        return major;
    }

    光看代码可能不是很清楚,说明一下,数组中的元素,目标元素一定有,而且占一半一上,我们将每两个不同的元素成对排除,剩下的一定就是所求元素,十分巧妙地一种解法

    StayHungry 求知若渴 StayFoolish 放低姿态
  • 相关阅读:
    学习鸟哥linux私房菜--安装中文输入法fcitx
    学习鸟哥linux私房菜--安装centos5.6(u盘安装,中文乱码)
    CSS
    vue-cli脚手架搭建项目及Axios封装
    前端面试题套路
    移动端touch事件
    import和require的区别
    接口封装
    js 数组操作
    vue 小记
  • 原文地址:https://www.cnblogs.com/wujunjie/p/5687998.html
Copyright © 2011-2022 走看看