第20948题 单选题
实现格雷编码的C++递归代码横线空缺处应填入的正确内容是?
vector<string> grayCode(int n) {    
    if (n == 0) return {"0"};    
    if (n == 1) return {"0", "1"};    
    vector<string> prev = grayCode(n-1);    
    vector<string> result;    
    for (string s : prev) {        
        result.push_back("0" + s);    
    }    
    for (_______________) { // 在此处填写代码        
        result.push_back("1" + prev[i]);    
    }    
    return result;
}
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析