博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Lintcode: First Bad Version
阅读量:6121 次
发布时间:2019-06-21

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

The code base version is an integer and start from 1 to n. One day, someone commit a bad version in the code case, so it caused itself and the following versions are all failed in the unit tests.You can determine whether a version is bad by the following interface: Java:    public VersionControl {        boolean isBadVersion(int version);    }C++:    class VersionControl {    public:        bool isBadVersion(int version);    };Python:    class VersionControl:        def isBadVersion(version)Find the first bad version.NoteYou should call isBadVersion as few as possible. Please read the annotation in code area to get the correct way to call isBadVersion in different language. For example, Java is VersionControl.isBadVersion.ExampleGiven n=5Call isBadVersion(3), get falseCall isBadVersion(5), get trueCall isBadVersion(4), get truereturn 4 is the first bad versionChallengeDo not call isBadVersion exceed O(logn) times.

 

就是一个找第一次出现的边沿的题目,方法是Binary Search, 只不过左右指针肯定会重合的,重合之后左指针所在的位置就是左边沿

isBadVersion是个Class Method, 所以调用的方式是类的名字+方法名字

* public class VersionControl {

* public static boolean isBadVersion(int k);
* }

1 /** 2  * public class VersionControl { 3  *     public static boolean isBadVersion(int k); 4  * } 5  * you can use VersionControl.isBadVersion(k) to judge wether  6  * the kth code version is bad or not. 7 */ 8 class Solution { 9     /**10      * @param n: An integers.11      * @return: An integer which is the first bad version.12      */13     public int findFirstBadVersion(int n) {14         int l = 1;15         int r = n;16         while (l <= r) {17             int m = (l + r) / 2;18             if (VersionControl.isBadVersion(m)) {19                 r = m - 1;20             }21             else {22                 l = m + 1;23             }24         }25         return l;26     }27 }

 

转载地址:http://zimka.baihongyu.com/

你可能感兴趣的文章
React 整洁代码最佳实践
查看>>
聊聊架构设计做些什么来谈如何成为架构师
查看>>
Java并发编程73道面试题及答案
查看>>
移动端架构的几点思考
查看>>
Spark综合使用及用户行为案例区域内热门商品统计分析实战-Spark商业应用实战...
查看>>
初学者自学前端须知
查看>>
Retrofit 源码剖析-深入
查看>>
企业级负载平衡简介(转)
查看>>
ICCV2017 论文浏览记录
查看>>
科技巨头的交通争夺战
查看>>
当中兴安卓手机遇上农行音频通用K宝 -- 卡在“正在通讯”,一直加载中
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
网易跟贴这么火,背后的某个力量不可忽视
查看>>
企业级java springboot b2bc商城系统开源源码二次开发-hystrix参数详解(八)
查看>>
java B2B2C 多租户电子商城系统- 整合企业架构的技术点
查看>>
IOC —— AOP
查看>>