由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 一道面试题
相关主题
这个面试题有什么trick?int 和 unsigned int 比大小会出问题 c++
[合集] 问个面试题问一个在C里面转换十六进制的问题
有人发过的一个面试题有没有什么简单的方法从一个double precision的floating point 中读出一个特定的bit?
说起来上次谁推荐的memmove作面试题来着一个hash table的简单问题
FLG面试题,压缩整数关于Dword 和 word
真是奇了怪了,VC编译器问题?C++中size_type怎么处理?
unsigned 8bit integer转换成signed 16bit应该是什么结果?What is size_t mean in C?
一个integer promotion问题Any possibility to make this expression faster?
相关话题的讨论汇总
话题: value话题: signed话题: unsigned话题: other话题: than
进入Programming版参与讨论
1 (共1页)
b****p
发帖数: 13
1
写一个函数,判断非浮点数value是有符号数还是无符号数。
这个题目是不是有点问题啊?depend on definition 吧?
m*****e
发帖数: 4193
2
trick question?haha

【在 b****p 的大作中提到】
: 写一个函数,判断非浮点数value是有符号数还是无符号数。
: 这个题目是不是有点问题啊?depend on definition 吧?

N*********y
发帖数: 105
3
? If there's no type given, how can this code be written in C/C++?

【在 m*****e 的大作中提到】
: trick question?haha
kb
发帖数: 73
4
add the largest value of signed value. If it is unsigned, it should be
positive, otherwise, negative. This requires the input more than 0 and less
than max value of signed value. Other cases are easy to check.
P*****f
发帖数: 2272
5
I just wonder how to present the value if we donot know the specific "signed
" value. I mean you at least have to use "int" or "unsigned int" to
represent the parameter.

add the largest value of signed value. If it is unsigned, it should be
positive, otherwise, negative. This requires the input more than 0 and less
than max value of signed value. Other cases are easy to check.

【在 kb 的大作中提到】
: add the largest value of signed value. If it is unsigned, it should be
: positive, otherwise, negative. This requires the input more than 0 and less
: than max value of signed value. Other cases are easy to check.

1 (共1页)
进入Programming版参与讨论
相关主题
Any possibility to make this expression faster?FLG面试题,压缩整数
[合集] reinterpret_cast a 4 byte unsigned char to integer真是奇了怪了,VC编译器问题?
[合集] 讨厌的WARNING: 在 MANAGED C++ 中写东东unsigned 8bit integer转换成signed 16bit应该是什么结果?
pointer overflow一个integer promotion问题
这个面试题有什么trick?int 和 unsigned int 比大小会出问题 c++
[合集] 问个面试题问一个在C里面转换十六进制的问题
有人发过的一个面试题有没有什么简单的方法从一个double precision的floating point 中读出一个特定的bit?
说起来上次谁推荐的memmove作面试题来着一个hash table的简单问题
相关话题的讨论汇总
话题: value话题: signed话题: unsigned话题: other话题: than