forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ValidPerfectSquare.cpp
66 lines (57 loc) · 1.54 KB
/
ValidPerfectSquare.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Source : https://leetcode.com/problems/valid-perfect-square/description/
// Author : Hao Chen
// Date : 2018-06-26
/***************************************************************************************
*
* Given a positive integer num, write a function which returns True if num is a
* perfect square else False.
*
*
* Note: Do not use any built-in library function such as sqrt.
*
*
* Example 1:
*
* Input: 16
* Returns: True
*
*
*
* Example 2:
*
* Input: 14
* Returns: False
*
*
*
* Credits:Special thanks to @elmirap for adding this problem and creating all test
* cases.
***************************************************************************************/
class Solution {
public:
// time limited error for the MAX_INT.
bool isPerfectSquare1(int num) {
//binary searching...
int left = 0, right = num;
while (left <= right) {
//cout << left << "," << right << endl;
int mid = left + (right - left)/2;
int n = mid * mid;
if ( n == num) return true;
if ( n < num ) left = mid + 1;
else right = mid - 1;
}
return false;
}
// the stupid way is best & fast.
bool isPerfectSquare2(int num) {
for (int i=1; i <= num/i ; i++ ) {
if ( i*i == num) return true;
}
return false;
}
bool isPerfectSquare(int num) {
return isPerfectSquare2(num);
return isPerfectSquare1(num);
}
};