由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教C问题
相关主题
问个bit struct的面试题 急G家offer
请教数学类题目中对于1<<31的处理java这套技术还能用多久?
被鄙视了的C语言题目,找工作真难啊求问一个面试题
新手请教:C++ decrement loop (转载)CS 面试题总结(5)
一道G家的店面题看一道面试题
“n的平方”大家用英语都怎么说?问一个关于xor的题
来贡献个小题.一道C面试题
Amazon online test 之后another C interview question
相关话题的讨论汇总
话题: int话题: comment话题: test话题: what
进入JobHunting版参与讨论
1 (共1页)
r**u
发帖数: 1567
1
int test( int x )
{
return ((x - 1) & x) == 0;
}
a. What might the above function be useful for?
b. Comment on its portability.
Please comment on its portability!
j****a
发帖数: 55
2
the range of values you can test() depends on what "int" means on each
platform...?
w*****o
发帖数: 166
3
LZ是不是在做broadcom一个组的test啊?

【在 r**u 的大作中提到】
: int test( int x )
: {
: return ((x - 1) & x) == 0;
: }
: a. What might the above function be useful for?
: b. Comment on its portability.
: Please comment on its portability!

r**u
发帖数: 1567
4
然。已经发回去了。这题没啥good idea,来这看看你们有没有好的思路。

【在 w*****o 的大作中提到】
: LZ是不是在做broadcom一个组的test啊?
k***g
发帖数: 58
5
只有当x是2的n次方时才是True
所以probability是 (int)log(x)+1 / x
不过我没往x是负数的时候想
y**i
发帖数: 1112
6
满足条件的是x只有一个bit是1或者全是0,总共有33个这样的数(32bit int),那么
概率就是33/2^32。不知道对不对?
s*****n
发帖数: 5488
7
test if it is power of 2.

【在 r**u 的大作中提到】
: 然。已经发回去了。这题没啥good idea,来这看看你们有没有好的思路。
H*X
发帖数: 281
8
测试是否是power of 2
一个是应该看unsigned,另外一个就是i = 0的时候,逻辑也是成立的,但0不是power
of 2
f****g
发帖数: 313
9
#define powerof2(x) ((((x)-1)&(x))==0)
It works for unsigned int type of data. But it seems 0 doesn't cause the
problem.

power

【在 H*X 的大作中提到】
: 测试是否是power of 2
: 一个是应该看unsigned,另外一个就是i = 0的时候,逻辑也是成立的,但0不是power
: of 2

d**e
发帖数: 6098
10
问的是移植性吧,不是问概率

【在 k***g 的大作中提到】
: 只有当x是2的n次方时才是True
: 所以probability是 (int)log(x)+1 / x
: 不过我没往x是负数的时候想

1 (共1页)
进入JobHunting版参与讨论
相关主题
another C interview question一道G家的店面题
amazon二面“n的平方”大家用英语都怎么说?
请教一个系统设计问题 (转载)来贡献个小题.
MS interview questionAmazon online test 之后
问个bit struct的面试题 急G家offer
请教数学类题目中对于1<<31的处理java这套技术还能用多久?
被鄙视了的C语言题目,找工作真难啊求问一个面试题
新手请教:C++ decrement loop (转载)CS 面试题总结(5)
相关话题的讨论汇总
话题: int话题: comment话题: test话题: what