填空题

希尔排序法属于 (2) 排序法。

【参考答案】

插入
<上一题 目录 下一题>
热门 试题

单项选择题
下列程序的输出结果是( )。 #include”stdio.h” #define N 3 #define M 3 void fun(int a[M][N]) {printf(“%d n”,*(a[1]+2);} main() {int a[M][N]; int i,j; for(i=0:i<M;i++) for(j=0;j<N;j++) a[i][j]=i+j-(i-j); fun(
A.;}A) 3B) 4C) 5
问答题
有以下程序: struct STU{ char name[10]; int num; }; void f1(struct STU c) { struct STU b=(“LiSiGuo”,2042); c=b: } void f2(struct STU*c) { struct STU b=(“SunDan”,2044); *c=b; } main() {struct STU a=(“YangSan”,2041),b=(“WangYin”,2043); f1(
相关试题
  • 以下sstrcpy()函数实现字符串复制,即将t...
  • 以下程序从名为filea.dat的文本文件中逐个...
  • 若整型变量a和b中的值分别为7和9,要求按...
  • 定义如下变量和数组: int i; int x[...
  • 有以下程序: #include main() int ...