Skip to content

Latest commit

 

History

History
70 lines (50 loc) · 1.32 KB

[0374] 猜数字大小.md

File metadata and controls

70 lines (50 loc) · 1.32 KB
title tags categories author comments updated permalink mathjax top description date
[0374] 猜数字大小
leetcode
leetcode
张学志
true
false
false
false
...
2019-12-31 16:06:14 -0800

题目描述

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

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

示例 :

输入: n = 10, pick = 6
输出: 6
Related Topics
  • 二分查找
  • 题目代码

    // 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) {
            
        }
    };

    题目解析

    方法一

    方法二

    方法三