forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cs
49 lines (44 loc) · 1.3 KB
/
Solution.cs
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
public class Solution {
public int Divide(int dividend, int divisor) {
return (int)DivideInternal(dividend, divisor);
}
public long GetHighestBit(long x)
{
if (x == 0) return 0;
long k = 0x80000000;
while ((x & k) == 0)
{
k >>= 1;
}
return k;
}
public long DivideInternal(long dividend, long divisor)
{
int sign = (dividend > 0) ^ (divisor > 0) ? -1 : 1;
if (dividend < 0) dividend = -dividend;
if (divisor < 0) divisor = -divisor;
long result = 0;
long pointer = GetHighestBit(dividend);
long currentHeader = 1;
dividend = dividend ^ pointer;
while (pointer > 0)
{
result <<= 1;
if (currentHeader >= divisor)
{
++result;
currentHeader -= divisor;
}
pointer >>= 1;
bool nextIsOne = (dividend & pointer) != 0;
currentHeader = (currentHeader << 1) + (nextIsOne ? 1 : 0);
dividend = dividend ^ (nextIsOne ? pointer : 0);
}
result = sign * result;
if (result > int.MaxValue || result < int.MinValue)
{
return int.MaxValue;
}
return result;
}
}