LeetCode 문제 풀이 day 029 (Jieky)
/*
Given two integers dividend and divisor, divide two integers without using multiplication, division and mod operator.
Return the quotient after dividing dividend by divisor.
The integer division should truncate toward zero.
Example 1:
Input: dividend = 10, divisor = 3
Output: 3
Example 2:
Input: dividend = 7, divisor = -3
Output: -2
Note:
Both dividend and divisor will be 32-bit signed integers.
The divisor will never be 0.
Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−2^31, 2^31 − 1]. For the purpose of this problem, assume that your function returns 2^31 − 1 when the division result overflows.
*/
import java.util.*;
import java.lang.*;
public class DivideTwoIntegers{
public static void main(String[] args){
DivideTwoIntegers dti = new DivideTwoIntegers();
int result = dti.divide(2147483647,1);
System.out.println(result);
}
// ,
public int divide(int dividend, int divisor) {
int binary = 0b10000000000000000000000000000000;
// 0, 0
if (dividend == 0) return 0;
// 、 。 1
if (dividend == divisor) return 1;
// , 0
int temp_dividend = (dividend&binary) == binary ? dividend : ~dividend + 1;
int temp_divisor = (divisor&binary) == binary ? divisor : ~divisor + 1;
if (temp_dividend > temp_divisor) return 0;
//
int flag = (dividend&binary) == (divisor&binary) ? 0 : 1;
// 1 ,
if (temp_divisor == -1) return flag == 0 ? (temp_dividend == Integer.MIN_VALUE? Integer.MAX_VALUE:~temp_dividend+1) : temp_dividend;
// :https://zhuanlan.zhihu.com/p/108566985
int base = temp_divisor;
// -2147483648
int left = temp_dividend;
int result = 0;
int count = 1;
while (left <= temp_divisor){
// base >= (Integer.MIN_VALUE >> 1) base
// >> 2,<
while ((base >= (Integer.MIN_VALUE >> 1)) && ((base << 1) >= left)) {
// 2 4 8 16, 1
count = count << 1;
base = base << 1;
System.out.println(base);
if (base >= 0) break;
}
if (base >= 0) break;
//
result -= count;
// left
left -= base;
// base count,
base = temp_divisor;
count = 1;
}
// result , ,
return flag == 0 ? (result == Integer.MIN_VALUE? Integer.MAX_VALUE:~result+1) : result;
}
public int divide03(int dividend, int divisor) {
int binary = 0b10000000000000000000000000000000;
int maxInt = 0b01111111111111111111111111111111;
// 0, 0
if (dividend == 0) return 0;
// 、 。 1
if (dividend == divisor) return 1;
// , 0
int temp_dividend = (dividend&binary) == binary ? dividend : ~dividend + 1;
int temp_divisor = (divisor&binary) == binary ? divisor : ~divisor + 1;
if (temp_dividend > temp_divisor) return 0;
//
int flag = (dividend&binary) == (divisor&binary) ? 0 : 1;
// -2147483648 -2147483648
int abs_dividend = Math.abs(dividend);
int abs_divisor = Math.abs(divisor);
if (abs_divisor == 1){
// , dividend ,
if(dividend == binary && flag==0) return maxInt;
// , abs_dividend , ( )
return flag == 1 ? ~abs_dividend+1 : abs_dividend;
}
// :https://zhuanlan.zhihu.com/p/108566985
int base = abs_divisor;
// abs_dividend -2147483648 , -2147483648 - 2 = 2147483646
int left = abs_dividend - base;
int result = 1;
int count = 1;
while (left >= abs_divisor){
// base <= (maxInt >> 1) base
while ((base <= (maxInt >> 1)) && ((base << 1) <= left)) {
// 2 4 8 16, 1
count = count << 1;
base = base << 1;
}
//
result += count;
// left
left -= base;
// base count,
base = abs_divisor;
count = 1;
}
//
return flag == 1 ? ~result+1 : result;
}
public int divide02(int dividend, int divisor) {
if (dividend == 0) return 0;
if (divisor == 0) return 100000;
int binary = 0b10000000000000000000000000000000;
int maxInt = 0b01111111111111111111111111111111;
//
int flag = (dividend&binary) == (divisor&binary) ? 0 : 1;
int abs_dividend = Math.abs(dividend);
int abs_divisor = Math.abs(divisor);
if (abs_divisor == 1){
// , dividend ,
if(dividend == binary && flag==0) return maxInt;
// , abs_dividend , ( )
return flag == 1 ? ~abs_dividend+1 : abs_dividend;
}
// -2147483648 - 2 = 2147483646, abs_dividend -2147483648,
int count = 0;
boolean overflow = false;
int temp = abs_dividend - abs_divisor;
// 3 - (-2147483648) -2147483645, ,
// -2147483648 - 3 2147483645, 2147483648 - 3 ,
while(abs_dividend - abs_divisor >= 0) {
count++;
abs_dividend -= abs_divisor;
}
//
return flag == 1 ? ~count+1 : count;
}
public int divide01(int dividend, int divisor) {
if (dividend == 0) return 0;
if (divisor == 0) return 100000;
int binary = 0b10000000000000000000000000000000;
int maxInt = 0b01111111111111111111111111111111;
//
int flag = (dividend&binary) == (divisor&binary) ? 0 : 1;
int abs_dividend = Math.abs(dividend);
int abs_divisor = Math.abs(divisor);
if (abs_divisor == 1){
// ,dividend divisor 1,
if(dividend == binary && flag==0) return maxInt;
// , abs_dividend , ( )
return flag == 1 ? ~abs_dividend+1 : abs_dividend;
}
// ,
int count = 0;
boolean overflow = false;
while(abs_dividend - abs_divisor >= 0) {
//
if (count == maxInt){
overflow = true;
break;
}
count++;
abs_dividend -= abs_divisor;
}
//
return overflow == false ? (flag == 1 ? ~count+1 : count) : maxInt;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.