剑指Offer:面试题29——数组中出现次数超过一半的数字(java实现)
PS:在前几天的面试中,被问到了这个题。然而当时只能用最低效的方法来解。
问题描述:
数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2。如果不存在则输出0。
思路1:
低效的做法:直接用哈稀表来存储
<key, value>,并找出出现次数value大于等于一半的那个key。
代码:
import java.util.Map;
import java.util.HashMap;
public class Solution {
boolean InvalidInput = false;
public int MoreThanHalfNum_Solution(int [] array) {
if(array == null || array.length == 0){
InvalidInput = true;
return 0;
}
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
int max = -1;
int ind = -1;
for(int i = 0; i < array.length; i++){
if(!map.containsKey(array[i])){
map.put(array[i], 1);
}else{
map.put(array[i], map.get(array[i])+1);
}
if(max < map.get(array[i])){
max = map.get(array[i]);
ind = array[i];
}
}
if(max > array.length/2){
return ind;
}else{
return 0;
}
}
}
思路2:
—由于出现的次数超过了数组的一半,那么如果我们将数组排序,中间的那个数一定是要求的数字(前提是它一定存在)
—这里排序时采用快排的基本思想,随机选择一个数,调整数组使得它左边的数都小于它,右边的数都大于它。(参考Partition函数)(下一篇博客的代码中给出了关于Partition函数详细的注释)
import java.util.Map;
import java.util.HashMap;
public class Solution {
static boolean InvalidInput = false;
public int MoreThanHalfNum_Solution(int [] array) {
if(array == null || array.length == 0){
InvalidInput = true;
return 0;
}
int middle = array.length >> 1;//设定中位数位置
int start = 0;
int end = array.length - 1;
int index = Partition(array, start, end);//随机选择一个标杆,进行调整数组
while(index != middle){//若所选的标杆最后位置不是中位数的位置,则根据情况对符合情况的部分进行再次调整
if(index > middle){
end = index - 1;
index = Partition(array, start, end);
}else{
start = index + 1;
index = Partition(array, start, end);
}
}
int result = array[middle];
//检查中位数出现的次数是否超过了一半
if(!CheckMoreThanHalf(array, result)){
result = 0;
}
return result;
}
public static boolean CheckMoreThanHalf(int[] array, int number){
int times = 0;
int length = array.length;
for(int i = 0; i < length; i++){
if(array[i] == number){
times++;
}
}
boolean isMoreThanHalf = true;
if(times * 2 <= length){
InvalidInput = true;
isMoreThanHalf = false;
}
return isMoreThanHalf;
}
public static int Partition(int[] array, int start, int end){
if(array == null || array.length == 0 || start < 0 || end < 0){
InvalidInput = true;
return -1;
}
int index = RandomInRange(start ,end);
int tmp = array[index];
array[index] = array[end];
array[end] = tmp;
int small = start - 1;
for(index = start; index < end; index++){
if(array[index] < array[end]){
small++;
if(small != index){
int temp = array[index];
array[index] = array[small];
array[small] = temp;
}
}
}
small++;
tmp = array[small];
array[small] = array[end];
array[end] = tmp;
return small;
}
public static int RandomInRange(int s, int e){
int Min = s;
int Max = e;
int result = Min + (int)(Math.random() * ((Max - Min) + 1));
return result;
}
}
思路3:
根据数组特点找出O(n)的算法
1.数组中有一个数字出现的次数超过数组长度的一半,也就是说它出现的次数比其他所有的数字出现的次数的和还要多。
2.因此我们可以考虑在遍历数组的时候保存两个值:一个是数组中的一个数字,一个是次数。
3.当我们遍历到下一个数字的时候,如果下一个数字和我们之前保存的数字相同,则次数加1,否则减1.
代码:
import java.util.Map;
import java.util.HashMap;
public class Solution {
static boolean InvalidInput = false;
public int MoreThanHalfNum_Solution(int [] array) {
if(array == null || array.length == 0){
InvalidInput = true;
return 0;
}
int result = array[0];
int times = 1;
for(int i = 1; i < array.length; i++){
if(times == 0){
result = array[i];
}else if(array[i] == result){
times++;
}else{
times--;
}
}
if(!CheckMoreThanHalf(array, result)){
InvalidInput = true;
result = 0;
}
return result;
}
public static boolean CheckMoreThanHalf(int[] array, int number){
int times = 0;
int length = array.length;
for(int i = 0; i < length; i++){
if(array[i] == number){
times++;
}
}
boolean isMoreThanHalf = true;
if(times * 2 <= length){
InvalidInput = true;
isMoreThanHalf = false;
}
return isMoreThanHalf;
}
}
PS:检查出现频率最高的是否超过一半,也还是需要遍历一次数组的。
剑指Offer:面试题29——数组中出现次数超过一半的数字(java实现)的更多相关文章
- 剑指Offer - 九度1370 - 数组中出现次数超过一半的数字
剑指Offer - 九度1370 - 数组中出现次数超过一半的数字2013-11-23 03:55 题目描述: 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如输入一个长度为9的数组 ...
- 【剑指Offer】28、数组中出现次数超过一半的数字
题目描述: 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字. 例如:输入如下所示的一个长度为9的数组{1,2,3,2,2,2,5,4,2}.由于数字2在数组中出现了5次,超过 ...
- 《剑指offer》39题—数组中出现次数超过一半的数字
题目描述 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}.由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2. ...
- 剑指Offer:找出数组中出现次数超过一半的元素
题目:找出数组中出现次数超过一半的元素 解法:每次删除数组中两个不同的元素,删除后,要查找的那个元素的个数仍然超过删除后的元素总数的一半 #include <stdio.h> int ha ...
- 剑指offer(28)数组中出现次数超过一半的数
题目描述 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}.由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2. ...
- 数组中出现次数超过一半的数字 -java
数组中出现次数超过一半的数字 -java 方法一: 数组排序,然后中间值肯定是要查找的值. 排序最小的时间复杂度(快速排序)O(NlogN),加上遍历. 方法二: 使用散列表的方式,也就是统计每个数组 ...
- 剑指Offer:面试题15——链表中倒数第k个结点(java实现)
问题描述 输入一个链表,输出该链表中倒数第k个结点.(尾结点是倒数第一个) 结点定义如下: public class ListNode { int val; ListNode next = null; ...
- 【Offer】[39] 【数组中出现次数超过一半的数字】
题目描述 思路分析 测试用例 Java代码 代码链接 题目描述 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如,输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}.由于数 ...
- 《剑指offer》面试题39. 数组中出现次数超过一半的数字
问题描述 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字. 你可以假设数组是非空的,并且给定的数组总是存在多数元素. 示例 1: 输入: [1, 2, 3, 2, 2, 2, 5, 4, ...
随机推荐
- CSS应用心得
单纯Html配合CSS网页 下面用程序来实际总结一下 首先,在写程序的应该具有一个良好的编程习惯. 第一:排版,拥有一个良好的排版,有助于我们能够快速的理解以及阅读程序: 第二:注释,就如以下程序,作 ...
- Error:Execution failed for task ':app:mergeDebugResources'. > Some file crunching failed, see logs f
今天调试安卓程序遇到的问题Error:Execution failed for task ':app:mergeDebugResources'. > Some file crunching fa ...
- 一些对新手有用的css技巧
一.表单部分 1.禁止textarea文本域的缩放 resize:none; 2.去除初始化textarea下拉条 overflow:auto; 3.如何让表单中的选项按钮,点击文字也能选中? < ...
- [C++] Running time and Integer to String
std::string num2str(int64_t p_vint, int8_t p_radix) { char str[48] = { 0 }; int64_t temp = 0; int64_ ...
- Unity扩展编辑器学习笔记--从路径下找到拥有某个组件类型的预设
public static List<T> GetAssetsWithScript<T>(string path) where T:MonoBehaviour { T tmp; ...
- 转-springAOP基于XML配置文件方式
springAOP基于XML配置文件方式 时间 2014-03-28 20:11:12 CSDN博客 原文 http://blog.csdn.net/yantingmei/article/deta ...
- sql查询语句
//查询表的字段名和字段类型select column_name,data_type from information_schema.columns where table_name = '表名' / ...
- 原创跑酷小游戏《Cube Duck Run》 - - 方块鸭快跑
自从unity5出来才开始关注unity,业余时间尝试做了个小游戏: <方块鸭快跑> (Cube Duck Run) 像素风,3d视角,色彩明快,有无尽和关卡两种模式. 应用连接: goo ...
- Centos下安装和配置SVN
1.安装SVN服务 #检查现有版本 rpm -qa subversion #如果存储旧版本,卸载旧版本SVN yum remove subversion #安装SVN yum install subv ...
- 如何通过SerialPort读取和写入设备COM端口数据
SerialPort类用于控制串行端口文件资源.提供同步 I/O 和事件驱动的 I/O.对管脚和中断状态的访问以及对串行驱动程序属性的访问.另外,SerialPort的功能可以包装在内部 Stream ...