LeetCode 374 猜数字大小[二分法] HERODING的LeetCode之路

Posted HERODING23

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 374 猜数字大小[二分法] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。

在这里插入图片描述在这里插入图片描述解题思路:
一道简单题温习一遍二分的知识,和一般的二分法不同,通常的二分法会使low与high逼近一个相邻的数,然后返回low或者high,这一般是求临界值,而本题不同,只要是满足条件返回即可,代码如下:

/** 
 * Forward declaration of guess API.
 * @param  num   your guess
 * @return 	     -1 if num is lower than the guess number
 *			      1 if num is higher than the guess number
 *               otherwise return 0
 * int guess(int num);
 */

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


/*作者:heroding
链接:https://leetcode-cn.com/problems/guess-number-higher-or-lower/solution/cer-fen-fa-by-heroding-hss4/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。*/

以上是关于LeetCode 374 猜数字大小[二分法] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 374 猜数字大小[二分法] HERODING的LeetCode之路

⭐算法入门⭐《二分枚举》简单12 —— LeetCode 374. 猜数字大小

leetcode No374 猜数字大小 java

leetcode No374 猜数字大小 java

374. 猜数字大小

[E二分] lc374. 猜数字大小(二分+水题)