您的位置 首页 JAVA(2017)

374. Guess Number Higher or Lower

We are playing the Guess Game. The game is as follows:

I pick a number from 1 to n. You have to guess which number I picked.

Every time you guess wrong, I’ll tell you whether the number is higher or lower.

You call a pre-defined API guess(int num) which returns 3 possible results (-11, or 0):

-1 : My number is lower
 1 : My number is higher
 0 : Congrats! You got it!

Example:

n = 10, I pick 6.

Return 6.
 很简单的题目,关键是。。。0,1,-1,我认为题目写反了。。。

/* The guess API is defined in the parent class GuessGame.
   @param num, your guess
   @return -1 if my number is lower, 1 if my number is higher, otherwise return 0
      int guess(int num); */

public class Solution extends GuessGame {
    public int guessNumber(int n) {
        int start=1;
        int end=n;
        while(start<end){
            int mid = start + (end-start)/2;
            if(guess(mid) ==0){
                return mid;
            }
            else if(guess(mid) ==-1){
                end =mid;
            }
            else{
                start = mid+1;
            }
        }
        return start;
    }
}
看完了?留个评分呗?
[0人评了分,平均: 0/5]

本站原创文章皆遵循“署名-非商业性使用-相同方式共享 3.0 (CC BY-NC-SA 3.0)”。转载请保留以下标注:

原文来源:《374. Guess Number Higher or Lower》

发表评论

邮箱地址不会被公开。

返回顶部