单项选择题

在待排序的元素序列基本有序的前提下,效率最高的排序方法是( )。

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

单项选择题
有以下程序: #include struct st int x,y;data[2]=1,10,2,20; main() struct st*p=data; printf( %d, ,p->y);printf( %d n ,(++p)->x); 程序的运行结果是( )。
有以下程序:
#include
struct st
int x,y;data[2]=1,10,2,20;
main()
struct st*p=data;
printf("%d,",p->y);printf("%d\n",(++p)->x);
程序的运行结果是( )。
单项选择题
以下选项中可作为C语言合法常量的是( )。
A.-80.
B.-080
C.-8e1.0
D.-80.0e
相关试题
  • 有如下程序: main() int i,a[][...
  • 下面程序的输出结果是______。 #in...
  • 以下程序的输出结果是______。 #in...
  • 有以下程序: main() inf a[3][3...
  • 有以下程序: #include main() int ...