【2021】小米秋招软件开发方向第二场笔试
时长:120分钟 总分:100分
222浏览 1人已完成答题
题型介绍
题型 | 多选题 | 填空题 |
---|---|---|
数量 | 20 | 2 |
若已知一个栈的入栈顺序是1,2,3,...,n,其输出序列为P1,P2,P...
若已知一个栈的入栈顺序是1,2,3,...,n,其输出序列为P1,P2,P3,...,Pn,若P1是n,则Pi=( )?
下列程序段的时间复杂度是()intfact(intn){if(n<=...
intfact(int n) {
if (n <= 1)
{
return 1
}
return n * fact(n - 1)
}
下面Java函数的执行结果是什么()staticbooleanfoo(ch...
static boolean foo(charc)
{
System.out.print(c)
return true
}
public static void main(String[] args) {
int i =0
for(foo('B')foo('A')&&(i<2)foo('C'))
{
i++
foo('D')
}
}
选项中哪一行代码可以替换//addcodehere而不产生编译错误()pu...
选项中哪一行代码可以替换//add code here 而不产生编译错误()
public abstract class MyClass {
publicint testInt = 5
//addcode here
publicvoid method() {
}
}