Skip to content

Create 374.guess-number-higher-or-lower.cpp #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions C++/374.guess-number-higher-or-lower.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* 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) {
return gn(1,n);
}
int gn(long long l,int h){
switch(guess((l+h)/2)){
case 0:
return (l+h)/2;
case 1:
return gn((l+h)/2+1,h);
case -1:
return gn(l,(l+h)/2);
}
return 1;

}
};