博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《剑指offer》第三_二题(不修改数组找出重复的数字)
阅读量:5280 次
发布时间:2019-06-14

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

// 面试题3(二):不修改数组找出重复的数字// 题目:在一个长度为n+1的数组里的所有数字都在1到n的范围内,所以数组中至// 少有一个数字是重复的。请找出数组中任意一个重复的数字,但不能修改输入的// 数组。例如,如果输入长度为8的数组{2, 3, 5, 4, 3, 2, 6, 7},那么对应的// 输出是重复的数字2或者3。#include 
using namespace std;int counter(const int*, int, int, int);bool getDuplication(const int* numbers, int length, int& num){ if (numbers == NULL || length <= 0)//判断输入是否对 return false; for (int i = 0; i < length; i++)//判断是否满足题目条件 { if (numbers[i] < 1 || numbers[i] > length) return false; } int start = 1, end = length - 1; while (end >= start) { int middle = ((end - start) >> 1) + start; int count = counter(numbers, length, start, middle);//查找落在二分左区间内个数 //cout << "start=" << start << endl << "middle=" << middle << endl << "end=" << end << endl<< "count=" << count << endl; if (start == end)//二分不动了,停止,判断这个值count值 { if (count > 1) { num = start; return true; } else break; } if (count > (middle - start) + 1)//如果落在左区间的个数大于区间范围,则这里面一定有重复,否则就去右区间看看 end = middle; else start = middle + 1; } return false;}int counter(const int* numbers, int length, int start, int middle){ int count = 0; if (numbers == NULL || start > middle || start < 0) return count; for (int i = 0; i < length; i++) { if (numbers[i] >= start&&numbers[i] <= middle) count++; } return count;}void test(const char* testName, int* numbers, int length, int* duplications, int dupLength){ int result; bool flag = getDuplication(numbers, length, result); if (!flag) result = -1; for (int i = 0; i < dupLength; ++i) { if (result == duplications[i]) { std::cout << testName << " passed." << std::endl; return; } } std::cout << testName << " FAILED." << std::endl;}// 多个重复的数字void test1(){ int numbers[] = { 2, 3, 5, 4, 3, 2, 6, 7 }; int duplications[] = { 2, 3 }; test("test1", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 一个重复的数字void test2(){ int numbers[] = { 3, 2, 1, 4, 4, 5, 6, 7 }; int duplications[] = { 4 }; test("test2", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 重复的数字是数组中最小的数字void test3(){ int numbers[] = { 1, 2, 3, 4, 5, 6, 7, 1, 8 }; int duplications[] = { 1 }; test("test3", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 重复的数字是数组中最大的数字void test4(){ int numbers[] = { 1, 7, 3, 4, 5, 6, 8, 2, 8 }; int duplications[] = { 8 }; test("test4", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 数组中只有两个数字void test5(){ int numbers[] = { 1, 1 }; int duplications[] = { 1 }; test("test5", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 重复的数字位于数组当中void test6(){ int numbers[] = { 3, 2, 1, 3, 4, 5, 6, 7 }; int duplications[] = { 3 }; test("test6", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 多个重复的数字void test7(){ int numbers[] = { 1, 2, 2, 6, 4, 5, 6 }; int duplications[] = { 2, 6 }; test("test7", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 一个数字重复三次void test8(){ int numbers[] = { 1, 2, 2, 6, 4, 5, 2 }; int duplications[] = { 2 }; test("test8", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 没有重复的数字void test9(){ int numbers[] = { 1, 2, 6, 4, 5, 3 }; int duplications[] = { -1 }; test("test9", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));}// 无效的输入void test10(){ int* numbers = nullptr; int duplications[] = { -1 }; test("test10", numbers, 0, duplications, sizeof(duplications) / sizeof(int));}void main(){ test1(); test2(); test3();//判断边界 test4();//判断边界 test5(); test6(); test7(); test8(); test9(); test10(); system("pause");}

 

转载于:https://www.cnblogs.com/CJT-blog/p/10459719.html

你可能感兴趣的文章
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
国外常见互联网盈利创新模式
查看>>
android:scaleType属性
查看>>
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>
【雷电】源代码分析(二)-- 进入游戏攻击
查看>>
Linux中防火墙centos
查看>>
[JS]递归对象或数组
查看>>
linux sed命令
查看>>
程序存储问题
查看>>
优雅地书写回调——Promise
查看>>
PHP的配置
查看>>
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
寄Android开发Gradle你需要知道的知识
查看>>