本文API
赋值
fill(beg, end, newValue)
fill_n(beg, num, newValue)
generate(beg, end, op)
generate_n(beg, num, op)
iota(beg, end, startValue)
替换元素
replace(beg, end, oldValue, newValue)
replace_if(beg, end, op, newValue)
replace_copy(sourceBeg, sourceEnd, destBeg, oldValue, newValue)
replace_copy_if(sourceBeg, sourceEnd, destBeg, op, newValue)