博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Majority Element
阅读量:6068 次
发布时间:2019-06-20

本文共 690 字,大约阅读时间需要 2 分钟。

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.

Credits:

Special thanks to  for adding this problem and creating all test cases.

 

Hide Tags
    
 

  这题是简单的一道遍历问题。
#include 
#include
using namespace std;class Solution {public: int majorityElement(vector
&num) { int n = num.size(); int cnt = 1; int nowInt = num[0]; for(int i =1;i
num ={
1,2,4,4,1,2,2,3,1,1,1,1,1,1,1,1}; Solution sol; cout<
<

 

转载于:https://www.cnblogs.com/Azhu/p/4323553.html

你可能感兴趣的文章
VM EBS R12迁移,启动APTier . AutoConfig错误
查看>>
atitit.细节决定成败的适合情形与缺点
查看>>
iOS - Library 库
查看>>
MATLAB 读取DICOM格式文件
查看>>
spring事务管理(Transaction)
查看>>
django.contrib.auth登陆注销学习
查看>>
js执行本地exe文件的3种方法
查看>>
理解B树索引
查看>>
vi编辑器的命令集合
查看>>
Mysql利用binlog恢复数据
查看>>
解决 Windows启动时要求验证
查看>>
我的友情链接
查看>>
用yum安装mariadb
查看>>
一点IT"边缘化"的人的思考
查看>>
Gallery循环滑动
查看>>
Sql与C#中日期格式转换总结
查看>>
iOS开发流程总结
查看>>
hadoop datanode 启动出错
查看>>
js颜色拾取器
查看>>
IDEA使用(1)intellIJ idea 配置 svn
查看>>