由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一道qualcomm面試題
相关主题
讨论一道面试题问一个面试问题
弱问一下,cracking the coding interview上有关bit manipulation的解释正确么看到一个c的面试题,求教。
leetcode: Divide Two Integers 怎么做?负数移位是怎么搞的阿
Divide Two Integers不用循环、递归、算术运算实现乘法
问一道lyft design题,求大神!leetcode上大数乘代码
google 首轮面世汇报path sum II OJ 超时
再来一道简单的bit运算题请教一下subset I 输出子集顺序问题
现在面试可以用Java8吗?twoSum
相关话题的讨论汇总
话题: prod话题: product话题: bit话题: int话题: return
进入JobHunting版参与讨论
1 (共1页)
m*****9
发帖数: 29
1
product of two 8-bit integers without multiplication operator.
e***s
发帖数: 799
2
这个比实现+ - × / without + - * / operator 简单多了吧。
就是a*b = a + a(b - 1) 递归吧?
m*****9
发帖数: 29
3
很遗憾,这不是面试官想要的答案。。我也是这么答的。

【在 e***s 的大作中提到】
: 这个比实现+ - × / without + - * / operator 简单多了吧。
: 就是a*b = a + a(b - 1) 递归吧?

z*****n
发帖数: 447
4
bit操作,移位再相加
比如
A*(001101)
= A + A<<2 + A<<3
还需要考虑一下溢出
j*********g
发帖数: 3179
5
Bit wise shifting?

★ 发自iPhone App: ChineseWeb - 中文网站浏览器

【在 m*****9 的大作中提到】
: product of two 8-bit integers without multiplication operator.
l*****a
发帖数: 14598
6
result=0;
while(x)
{
if(x&0x1) result+=y;
y+=y;
x>>1;
}
return result;

【在 m*****9 的大作中提到】
: product of two 8-bit integers without multiplication operator.
m*****9
发帖数: 29
7
应该是这个,bit manipulation

【在 j*********g 的大作中提到】
: Bit wise shifting?
:
: ★ 发自iPhone App: ChineseWeb - 中文网站浏览器

l*********y
发帖数: 370
8
int product(short a, short b)
{
if(b < 0)
return -product(a, -b);
int prod = 0;
for(int i=0; i<7; ++i){
if((b & 1< prod +=a< }
}
return prod;
}
p*******o
发帖数: 3564
9
8-bit integer会有负数问题?short也有16bit

【在 l*********y 的大作中提到】
: int product(short a, short b)
: {
: if(b < 0)
: return -product(a, -b);
: int prod = 0;
: for(int i=0; i<7; ++i){
: if((b & 1<: prod +=a<: }
: }

1 (共1页)
进入JobHunting版参与讨论
相关主题
twoSum问一道lyft design题,求大神!
M 家电面google 首轮面世汇报
讨论一个g题再来一道简单的bit运算题
发个L家面经,攒rp现在面试可以用Java8吗?
讨论一道面试题问一个面试问题
弱问一下,cracking the coding interview上有关bit manipulation的解释正确么看到一个c的面试题,求教。
leetcode: Divide Two Integers 怎么做?负数移位是怎么搞的阿
Divide Two Integers不用循环、递归、算术运算实现乘法
相关话题的讨论汇总
话题: prod话题: product话题: bit话题: int话题: return