-->
当前位置:首页 > Luz 第6525页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:一棵二叉树的先序遍历序列为ABCDEF,中序遍历序列为CBAEDF,则后序遍历序列为( )

Luz5年前 (2021-05-10)1317
一棵二叉树的先序遍历序列为ABCDEF,中序遍历序列为CBAEDF,则后序遍历序列为( )A.CBEFDAB.FEDCBAC.CBEDFAD.不确定答案:A…

单选题:Python中用来计算集合的交集的运算符是()。

Luz5年前 (2021-05-10)2576
Python中用来计算集合的交集的运算符是()。A.|B.&C.-D.^答案:B…

单选题:Python集合中的元素不可以是()。

Luz5年前 (2021-05-10)4578
Python集合中的元素不可以是()。A.数字B.字符串C.元组D.列表答案:D…

单选题:We can tell that there must be a lot of redundant calculations d

Luz5年前 (2021-05-10)1760
We can tell that there must be a lot of redundant calculations during the exhaustive search for the matrix multiplicatio…

单选题:Why doesn't Floyd algorithm work if there are negative-cost cycl

Luz5年前 (2021-05-10)1139
Why doesn't Floyd algorithm work if there are negative-cost cycles?A.Because Floyd didn't like negative numbers.B.Becaus…

单选题:如下程序段的输出结果是( )。

Luz5年前 (2021-05-10)1110
如下程序段的输出结果是( )。```def fun(): x = 20 print(x, end=' ')x = 10fun()print(x)```A.10 20B.20 10C.10 10D.20 20答案:B…

单选题:如下程序段的输出结果是( )。

Luz5年前 (2021-05-10)1801
如下程序段的输出结果是( )。```def fun(x, *y): print(y)fun(10, 20, 30)```A.20B.30C.(20, 30)D.语法错误答案:C…

单选题:下面哪组是全部合法的标识符?

Luz5年前 (2021-05-10)1285
下面哪组是全部合法的标识符?A.```average2youtom&jerry```B.```f(x)a+b_sum```C.```andsub_x_money1```D.```'a'dollar$mycup```答案:C…

单选题:设有定义:

Luz5年前 (2021-05-10)897
设有定义:int x;double y=15.8;执行表达式x=(int)(y/3+0.5)+(int)y%3之后,x的值等于()。A.5B.5.0C.5.3D.5.8答案:A…

单选题:设有定义:

Luz5年前 (2021-05-10)856
设有定义:int a;float b;执行scanf("%2d%f", &a, &b);语句时,若从键盘输入876 543.0则a和b的值分别是( )。A.87和6.0B.876和543.0C.87和543.0D.76和543.0答案…