单项选择题

最简单的交换排序方法是

A.快速排序
B.选择排序
C.堆排序
D.冒泡排序
<上一题 目录 下一题>
热门 试题

单项选择题
下面程序错误的语句是 #include“iostream.h” ① void main( ) ② { ③ int A=0; ④ int &B; ⑤ B=A; ⑥ cout<<B; ⑦ cout<<A; ⑧ }
A.②
B.③
C.④
D.⑥
单项选择题
函数int test(int a,int b=l,int c=0),下列调用不合法的个数是 test(0); test(0,0); test( ); test(0,0,0);
A.0
B.1
C.2
D.3
相关试题
  • 下面程序的结果为 #include iostream.h...
  • 下列程序的输出结果是 #include iostrea...
  • 下面程序输出的结果为 #include iostrea...
  • 下面程序的执行结果为 #include iostrea...
  • 以下哪个特征不是面向对象思想中的主要特征