途虎养车2021秋招前端笔试试卷B
时长:120分钟 总分:100分
162浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 判断题 | 填空题 |
---|---|---|---|---|
数量 | 11 | 2 | 1 | 2 |
下面的方法,当输入为2的时候返回值是多少?publicstaticintg...
public static int getValue(int i) { int result = 0 switch (i) { case 1: result = result + i case 2: result = result + i * 2 case 3: result = result + i * 3 default: result = result + i * 4 } return result }
下面程序的输出结果是intmain(){inta[5]={1,2,3,4,...
int main() { int a[5] = {1, 2, 3, 4, 5} int *ptr = (int *)(&a + 1) printf("%d, %d", *(a + 1), *(ptr - 1)) return 0 }
已知一棵二叉树,如果先序遍历的节点顺序是:ADCEFGHB,中序遍历是:C...
对以下代码的事件复杂度为多少(^符号表示幂)intx=0,a=1,b=2...
int x = 0, a = 1, b = 2
for (i = 1 i <= N i++) {
for (j = 1 j < i j++) {
for (k = 1 k <= N k++) {
x += a * b
}
}
}
代码执行后,打印结果正确的是publicclassChildextends...
public class Child extends Father{ static String str static { System.out.println("Child Static block Run!") } public Child(String str) { super(str) System.out.println("Child Create! " + str) } public static void main(String[] args) { Father father = new Father("123") Child child = new Child("abc") } } class Father{ static String str static { System.out.println("Father Static block Run!") } public Father(String str) { this.str = str } }
将每个元素替换为右侧最大元素
给你一个数组,请你将每个元素用它右边最大的元素替换,如果是最后一个元素,用替换。
示例:
输入:arr = [17,18,5,4,6,1] 输出:[18,6,6,6,1,-1]
提示: