由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教这段代码是干嘛用的
相关主题
求教:贪心算法找零钱的精度问题?singleton without static?
请教一下subset I 输出子集顺序问题请教个C++编程思路
twoSum问道编程题
请教一个Java 多线程 同步的 面试题!Nvidia 的面试
我的bloomberg肯定没戏了,发点面试题攒人品吧攒rp,电面题目
a small question about c++ object allocationC/C++ Questions
write singleton w/o using static variable or function一个电面
question about static variablebloomberg 第一轮电话面试 电经
相关话题的讨论汇总
话题: int话题: mymethod话题: result话题: return话题: 面试题
进入JobHunting版参与讨论
1 (共1页)
k*******t
发帖数: 202
1
public static int myMethod(int a, int b){

int result = a + b;
if(a -4 > 0 && b -4 > 0 ){
return result + a-2 +
b-2 + myMethod(a -4, b -4);
}else{
return result + ( (a-2 > 0 ? a-2 : 0)
+ (a-4 > 0 ? a : 0) + (b-2 > 0 ?
b : 0) + (b-4 > 0 ? b : 0) );
}
}
一道面试题,求教。
C***U
发帖数: 2406
2
比如a是7 b是9 那么就是下面两组数求和吧
a: 7 5 3 1
b: 9 7 5 3

【在 k*******t 的大作中提到】
: public static int myMethod(int a, int b){
:
: int result = a + b;
: if(a -4 > 0 && b -4 > 0 ){
: return result + a-2 +
: b-2 + myMethod(a -4, b -4);
: }else{
: return result + ( (a-2 > 0 ? a-2 : 0)
: + (a-4 > 0 ? a : 0) + (b-2 > 0 ?
: b : 0) + (b-4 > 0 ? b : 0) );

l********8
发帖数: 83
3
\sum\limits_{i=0}^{i
m******n
发帖数: 180
4


【在 l********8 的大作中提到】
: \sum\limits_{i=0}^{i
1 (共1页)
进入JobHunting版参与讨论
相关主题
bloomberg 第一轮电话面试 电经我的bloomberg肯定没戏了,发点面试题攒人品吧
请教一个C/C++问题a small question about c++ object allocation
问一个static variable上锁的问题write singleton w/o using static variable or function
bloomberg电面question about static variable
求教:贪心算法找零钱的精度问题?singleton without static?
请教一下subset I 输出子集顺序问题请教个C++编程思路
twoSum问道编程题
请教一个Java 多线程 同步的 面试题!Nvidia 的面试
相关话题的讨论汇总
话题: int话题: mymethod话题: result话题: return话题: 面试题