Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 1.71 KB

374-guess-number-higher-or-lower.md

File metadata and controls

60 lines (44 loc) · 1.71 KB

374. Guess Number Higher or Lower - 猜数字大小

我们正在玩一个猜数字游戏。 游戏规则如下:
我从 1 到 n 选择一个数字。 你需要猜我选择了哪个数字。
每次你猜错了,我会告诉你这个数字是大了还是小了。
你调用一个预先定义好的接口 guess(int num),它会返回 3 个可能的结果(-11 或 0):

-1 : 我的数字比较小
 1 : 我的数字比较大
 0 : 恭喜!你猜对了!

示例 :

输入: n = 10, pick = 6
输出: 6

题目标签:Binary Search

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
cpp 0 ms 823.3 KB
// Forward declaration of guess API.
// @param num, your guess
// @return -1 if my number is lower, 1 if my number is higher, otherwise return 0
int guess(int num);

class Solution {
public:
    int guessNumber(int n) {
        int low = 1, high = n;
        while (low <= high) {
            int mid = low + (high - low) / 2;
            int ans = guess(mid);
            if (ans == 0) {
                return mid;
            } else if (ans == -1) {
                high = mid - 1;
            } else {
                low = mid + 1;
            }
        }
        return -1;
    }
};