搜狗2016研发工程师笔试题(二)
时长:60分钟 总分:100分
128浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 8 | 5 |
已知i为整数,d[i]表示i的正约数的和,已知10000除以1到10000所有整数的余数和为17743986,求1<=i<=10000范围内所有d(i)的和的末4位()
关于代码输出正确的
int main(int argc, char *argv[]) { string a="hello world" string b=a if (a.c_str()==b.c_str()) { cout<<"true"<<endl } else cout<<"false"<<endl string c=b c="" if (a.c_str()==b.c_str()) { cout<<"true"<<endl } else cout<<"false"<<endl a="" if (a.c_str()==b.c_str()) { cout<<"true"<<endl } else cout<<"false"<<endl return 0 }
以下计算斐波那契数列的函数时间复杂度为()
int Fibonacci(int n) { if(n==0) return 0 else if(n==1) return 1 else return Fibonacci(n-1)+Fibonacci(n-2) }