第一个错误的版本_寻找第一个错误的版本

第一个错误的版本

Problem statement:

问题陈述:

Suppose that IncludeHelp turns to be a product company & we have a product manager leading a team to develop a new product. Unfortunately, the latest version of our product fails the quality check. Since each version is developed based on the previous version, all the versions after a bad version are also bad.

假设IncludeHelp变成一家产品公司,并且我们有一位产品经理领导一个团队来开发新产品。 不幸的是,我们产品的最新版本未能通过质量检查。 由于每个版本都是基于先前版本开发的,因此错误版本之后的所有版本也都是错误的。

Suppose we have n versions [1, 2, ..., n] and we want to find out the first bad one, which causes all the following ones to be bad.

假设我们有n个版本[1、2,...,n] ,我们想找出第一个不良版本,这将导致随后的所有不良版本。

Our product manager is given an API bool isBadVersion(version) which will return whether version is bad or not. He now wants to hire a programmer to implement a function to find the first bad version. There should be minimum number of calls to the API. Can you help him out?

我们的产品经理会获得一个API bool isBadVersion(version) ,它将返回版本是否正确。 他现在想雇用一名程序员来实现一个功能,以查找第一个不良版本。 对API的调用次数应最少。 你能帮他吗?

Solution:

解:

Of course this is a searching problem & for optimization we can do a binary search here. But now the question is, is there any other optimum searching method for search problem? The answer is yes.

当然这是一个搜索问题,为了进行优化,我们可以在此处进行二进制搜索。 但是现在的问题是,对于搜索问题,还有其他最佳搜索方法吗? 答案是肯定的。

It is binary search but the narrow down constant, K is not typically (low + high)/2 as in case of general binary search.

它是二进制搜索,但缩小常数 K通常不像一般二进制搜索那样(低+高)/ 2 。

In this case the narrow down constant, K= low+(high-low)/2 resulting in much more optimized result.

在这种情况下, 缩小常数 K = low +(high-low)/ 2,从而导致更加优化的结果。

Algorithm:

算法:

We have already the API function bool isBadVersion(version)

我们已经有API函数bool isBadVersion(version)

Now to find the first bad version we generate another function:

现在找到第一个不良版本,我们生成另一个函数:

low=lower bound variable
high=upper bound variable

低=下界变量
高=上限变量

FUNCTION findFirstBad( int low, int high)
While(low<=high){
1.  Set mid to the narrow down constant K, low+(high-low)/2;
2.  IF (isBadVersion(mid))  //if it is bad
//there can be two case
//1.    This is no 1, so thdere is no other version previously 
//      thus these must be the first one
//2.    The immediate previous one is not bad, thus this is 
//      the first bad one
IF (mid==1 || !isBadVersion(mid-1))
Return mid;
ELSE
//narrow down high as first bad one must be before this one
high=mid-1;
End IF-ELSE
ELSE
//since this is not bad, the lower bound must be > this version
low=mid+1;
END IF-ELSE
3.  If not returned from while loop, no bad version exists at all
Return -1;
END WHILE
END FUNCTION

C++ implementation

C ++实现

#include <bits/stdc++.h>
using namespace std;
#define n 10
int A[n]= { 0, 0, 0, 0, 0, 0, 1, 1, 1, 1};
// declaration of isBadVersion API.
bool isBadVersion(int version){
return A[version];
}
int findFirstBad(int low,int high){
while(low<=high){
//narrow down factor
int mid=low+(high-low)/2;
if(isBadVersion(mid)) {
if(mid==0 || !isBadVersion(mid-1))
return mid+1;
else
high=mid-1;
}
else
low=mid+1;
}
return -1;	
}
int firstBadVersion(int i) {
if(i==1){
if(isBadVersion(i))
return i+1;
else
return -1;
}
return findFirstBad(0,i);
}
int main(){
cout<<"this is a functional problem,so main functiom hardcoded\n";
//product versions
//A[n]= { 0, 0, 0, 0, 0, 0, 1, 1, 1, 1};
//0=good product, 1=bad product
cout<<"product versions are:\n";
for(int i=0;i<n;i++){
cout<<i+1<<"\t";
if(A[i])
cout<<"bad"<<endl;
else
cout<<"good"<<endl;
}
cout<<"First Bad version is:\n";
cout<<firstBadVersion(n-1);
return 0;
}

Output

输出量

this is a functional problem,so main functiom hardcoded
product versions are:
1       good
2       good
3       good
4       good
5       good
6       good
7       bad
8       bad
9       bad
10      bad
First Bad version is:
7  

翻译自: https://www.includehelp.com/icp/finding-first-bad-version.aspx

第一个错误的版本

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540780.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

js的JSON

把任何JavaScript对象变成JSON&#xff0c;就是把这个对象序列化成一个JSON格式的字符串&#xff0c;这样才能够通过网络传递给其他计算机。 如果我们收到一个JSON格式的字符串&#xff0c;只需要把它反序列化成一个JavaScript对象&#xff0c;就可以在JavaScript中直接使用这个…

软件可用性测试mantis,学生选课系统-软件可用性测试实验.doc

学生选课系统-软件可用性测试实验实验报告课程名称&#xff1a;软件测试方法和技术学生姓名&#xff1a;学号&#xff1a;院系&#xff1a;计算机 班级&#xff1a;1202 组别&#xff1a;1任课教师&#xff1a;张建东 指导老师&#xff1a;张建东目录一、实验目的&#xff1a;实…

Web 通信 之 长连接、长轮询(long polling)

基于HTTP的长连接,是一种通过长轮询方式实现"服务器推"的技术,它弥补了HTTP简单的请求应答模式的不足,极大地增强了程序的实时性和交互性。 一、什么是长连接、长轮询&#xff1f; 用通俗易懂的话来说&#xff0c;就是客户端不停的向服务器发送请求以获取最新的数据信…

scala中捕获异常_如何在Scala中引发异常?

scala中捕获异常Scala的例外 (Exceptions in Scala) Exceptions are cases or events that occur in the program at run time and hinder the regular flow of execution of the program. These can be handled in the program itself. 例外是在运行时在程序中发生并阻碍程序…

计算机如何输入ip地址,电脑如何切换ip地址_怎么让电脑切换ip地址-win7之家

在每台电脑中&#xff0c;系统中的ip协议都会有提供一种统一的ip地址&#xff0c;能够为为互联网上的每一个网络和每一台主机分配一个逻辑地址&#xff0c;从而达到屏蔽物理地址的差异&#xff0c;同时我们也可以对ip地址进行切换&#xff0c;那么电脑如何切换ip地址呢&#xf…

java线程和操作系统线程_操作系统中的线程

java线程和操作系统线程线程数 (Threads) A thread is a unit of CPU utilization, which comprises the following parts that are program counter, register set, stack and a thread ID. Generally, it’s well known that the process is heavy weighted which means they…

SQL 强制指定索引加快查询速度

转自&#xff1a;http://blog.csdn.net/qq380107165/article/details/45502641 今天遇到一个查询问题&#xff0c;多加了一个查询参数导致查询超时报黄&#xff0c;经过公司DBA改进&#xff0c;涨姿势了。现在发出来跟大家分享一下&#xff01;~ 1 SELECT m.* FROM TB_UserSite…

计算机IP地址pin,怎样PIN ip地址

1、用鼠标点击开始——运行(快捷键winR)、弹出【运行】对话框、在窗口中输入cmd&#xff0c;如下图所示。2、单击【确定】按钮、打开命令窗口、如下图所示&#xff1b;3、在命令窗口输入ipconfig/all然后按Enter便可以查看本机IP。如下图所示&#xff1b;4、接下来查看你所需要…

360修复导致服务器,桌面安装360软件修复漏洞补丁导致桌面TC端无法登陆,FC端VNC登陆一键修复显示HDC不可达...

问题描述桌面虚机安装360软件以后打补丁&#xff0c;触发桌面虚机重启以后TC端无法连接到桌面&#xff0c;FC登陆VNC相应的虚拟机通过桌面云修复工具一键修复到33%&#xff0c;提示HDC不可达。告警信息处理过程在360服务器端把华为桌面云的进程加入到360服务器的白名单里面&…

java协变返回类型_Java中的协变返回类型

java协变返回类型协变返回类型 (Covariant return type) The covariant return type is that return type which may vary in parent and child class (or subclass). 协变量返回类型是该返回类型&#xff0c;在父类和子类(或子类)中可能有所不同。 Before JDK5 java does not…

dfs文件服务器访问权限,fastDFS 文件服务器访问

鉴权 token 获取token 由文件服务器管理员分配接口定义上传文件请求 URL&#xff1a;请求方式&#xff1a;GET/POST参数形式&#xff1a;form-data参数&#xff1a;参数名位置类型说明是否必填access_tokenheaderString用户 token是fileurlMultipartFile文件是返回&#xff1a;…

CCFL的完整形式是什么?

CCFL&#xff1a;冷阴极荧光灯 (CCFL: Cold Cathode Fluorescent Lamp) CCFL is an abbreviation of a "Cold Cathode Fluorescent Lamp". CCFL是“冷阴极荧光灯”的缩写。 It is a lighting system lamp that contains cathode that discharges electrons and it …

ffmpeg 纯静态编译,以及添加自定义库流程摘要

需求&#xff1a; 1. 纯静态编译ffmpeg ,即ldd ./ffmpeg 的结果是&#xff1a;not a dynamic executable2. 修改ffmpeg 项目&#xff0c;添加自定义功能库3. 自定义库由c实现&#xff0c;要求能被纯c的ffmpeg项目调用4. 自定义库必须使用g 的一些高级特性编译&#xff0c;要求…

vue ani_ANI的完整形式是什么?

vue aniANI&#xff1a;自动号码识别 (ANI: Automatic Number Identification) ANI is an abbreviation of "Automatic number identification". ANI是“自动号码识别”的缩写 。 It is an attribute of a network of telecommunications for involuntarily finding…

realme系统服务器代码,解锁BL之后,Realme正式开放源代码

集微网8月30日消息(文/数码控)&#xff0c;此前Realme已经开放了解锁BootLoader(简称BL)&#xff0c;现在官方更进一步&#xff0c;直接将Realme X、Realme X青春版的源代码开放了。可能有的人不知道解锁BL与开放源代码是什么意思&#xff0c;我们在此来说明一下&#xff1a;Bo…

Codeforces 757B - Bash's Big Day(分解因子+hashing)

757B - Bashs Big Day 思路&#xff1a;筛法。将所有因子个数求出&#xff0c;答案就是最大的因子个数&#xff0c;注意全为1的特殊情况。 代码&#xff1a; #include<bits/stdc.h> using namespace std; #define ll long long #define pb push_back const int N1e55; in…

JavaScript中的const

const (const) Like other programming languages, JavaScript also provide the feature to create constants, we can make any identifier as constant by using the "const". 与其他编程语言一样&#xff0c;JavaScript也提供了创建常量的功能&#xff0c;我们可…

无法从ftp服务器上复制文件格式,ftp服务器上复制不了文件格式

ftp服务器上复制不了文件格式 内容精选换一换本版本提供dump_data_conversion.pyc脚本&#xff0c;实现dump数据文件与numpy文件格式互转功能&#xff0c;具体命令行格式如下&#xff1a;-type&#xff1a;数据类型&#xff0c;必选参数 。参数值选项&#xff1a;quant&#xf…

华大基因茅矛:云计算让精准医疗走进生活

2016年是“十三五”的开局之年&#xff0c;也是中国医疗卫生行业的关键一年。现在看来&#xff0c;也会是医疗行业和以大数据为代表的信息技术相互融合发展之年。今年4月&#xff0c;国务院办公厅印发《深化医药卫生体制改革2016年重点工作任务》&#xff0c;其中不仅谈到了要加…

Python Pandas –操作

Pandas support very useful operations which are illustrated below, 熊猫支持非常有用的操作&#xff0c;如下所示&#xff0c; Consider the below dataFrame, 考虑下面的dataFrame&#xff0c; import numpy as npimport pandas as pddf pd.DataFrame({col1: [1, 2, 3,…