-
Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathLongDivision.java
83 lines (73 loc) · 2.62 KB
/
LongDivision.java
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Given two integers dividend and divisor, divide two integers without using multiplication,
// division, and mod operator.
//
// The integer division should truncate toward zero, which means losing its fractional part.
// For example, 8.345 would be truncated to 8, and -2.7335 would be truncated to -2. My
// method used Long Division, here is the source
// "https://en.wikipedia.org/wiki/Long_division"
package com.thealgorithms.maths;
public final class LongDivision {
private LongDivision() {
}
public static int divide(int dividend, int divisor) {
long newDividend1 = dividend;
long newDivisor1 = divisor;
if (divisor == 0) {
return 0;
}
if (dividend < 0) {
newDividend1 = newDividend1 * -1;
}
if (divisor < 0) {
newDivisor1 = newDivisor1 * -1;
}
if (dividend == 0 || newDividend1 < newDivisor1) {
return 0;
}
StringBuilder answer = new StringBuilder();
String dividendString = "" + newDividend1;
int lastIndex = 0;
String remainder = "";
for (int i = 0; i < dividendString.length(); i++) {
String partV1 = remainder + "" + dividendString.substring(lastIndex, i + 1);
long part1 = Long.parseLong(partV1);
if (part1 > newDivisor1) {
int quotient = 0;
while (part1 >= newDivisor1) {
part1 = part1 - newDivisor1;
quotient++;
}
answer.append(quotient);
} else if (part1 == newDivisor1) {
int quotient = 0;
while (part1 >= newDivisor1) {
part1 = part1 - newDivisor1;
quotient++;
}
answer.append(quotient);
} else if (part1 == 0) {
answer.append(0);
} else if (part1 < newDivisor1) {
answer.append(0);
}
if (!(part1 == 0)) {
remainder = String.valueOf(part1);
} else {
remainder = "";
}
lastIndex++;
}
if ((dividend < 0 && divisor > 0) || (dividend > 0 && divisor < 0)) {
try {
return Integer.parseInt(answer.toString()) * (-1);
} catch (NumberFormatException e) {
return -2147483648;
}
}
try {
return Integer.parseInt(answer.toString());
} catch (NumberFormatException e) {
return 2147483647;
}
}
}