360公司2016研发工程师笔试题(一)
时长:30分钟 总分:100分
164浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 9 | 1 |
下面算法的功能是
Method(C) { S = {} while (not solution(S)) { x = select(C) if feasible (S, x) S = S + {x} C = C - {x} } return S }
用Af对上述字符串进行分类的结果为?
下面代码会输出?
int main(){ int a[4]={1,2,3,4} int *ptr=(int*)(&a+1) printf("%d",*(ptr-1)) }
针对以下代码,哪些说法是正确的?
class CompareReference{ public static void main(String [] args){ float f=42.0f float f1[]=new float[2] float f2[]=new float[2] float[] f3=f1 long x=42 f1[0]=42.0f } }