首页 > 代码库 > 【LeetCode】Divide Two Integers
【LeetCode】Divide Two Integers
Divide two integers without using multiplication, division and mod operator.
If it is overflow, return MAX_INT.
题目要求不能使用除号、乘号和取余操作符。
我们使用移位操作符。<< 左移代表乘以2,>>右移代表除以2
//a,b分别为被除数和除数 public int divide(int a,int b){ long res=0; int sign = 1; if((a<0 && b>0)||(a>0&&b<0)){ sign = -1; } if(b==0||(a==Integer.MIN_VALUE&&b==-1)){ return Integer.MAX_VALUE; } if(a<b){ return 0; } while(a>b){ long temp = b; long p = 1; while(a>=(temp<<1)){ temp<<=1; p<<=1; } a-=temp; res+=p; } res = sign*res; return (int) res; }
【LeetCode】Divide Two Integers
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。