• 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 放低姿态
  • 相关阅读:
    cocos2d-x Tests讲解 Particle System(粒子系统)
    c++ 知识点
    详解C/C++函数指针声明
    VS中的路径宏 vc++中OutDir、ProjectDir、SolutionDir各种路径
    cocos2d-x学习知识点记录
    Ogre实现简单地形
    Ogre内部渲染流程分析系列
    gcc/g++编译
    gcc和g++的区别
    Hack with rewrite
  • 原文地址:https://www.cnblogs.com/wujunjie/p/5687998.html
Copyright © 2020-2023  润新知