第20344题 单选题
给定一段实现升序插入排序的C++代码,横线处应填入的正确表达式是什么?

下面代码试图将数组按升序进行插入排序,横线处应填写的内容为:

void ins(int a[], int n){
  for(int i = 1; i < n; i++){
    int key = a[i];
    int j = i - 1;
    while(j >= 0 && __________){
      a[j+1] = a[j];
      j--;
    }
    a[j+1] = key;
  }
}
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析