第20352题 单选题
下列选项中可正确补全C++升序插入排序函数空缺代码的是?

待补全的升序插入排序C++代码如下:

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