网易2018校招测试开发工程师笔试卷
时长:120分钟 总分:100分
104浏览 0人已完成答题
题型介绍
题型 | 单选题 | 填空题 |
---|---|---|
数量 | 20 | 3 |
下面程序的功能是输出数组的全排列,选择正确的选项,完成其功能。
void perm(int list[], int k, int m) { if ( ) { copy(list,list+m,ostream_iterator<int>(cout," ")) cout<<endl return } for (int i=k i<=m i++) { swap(&list[k],&list[i]) ( ) swap(&list[k],&list[i]) } }
下面的操作系列中哪一个是正确的?
python函数func1如下: def func1(foo): ...
def func1(foo): def __dec(): print "Start...." foo() print "End..." return __dec
@func1 def func2(): print "I am python function"
对于SQL语句select * from t where a=100 an...
彩色的砖块
例如: s = "ABAB",那么小易有六种排列的结果:
"AABB","ABAB","ABBA","BAAB","BABA","BBAA"
其中只有"AABB"和"BBAA"满足最多只有一对不同颜色的相邻砖块。
操作序列
1、将a_i放入b序列的末尾
2、逆置b序列
小易需要你计算输出操作n次之后的b序列。