Cpp_Primer_Practice icon indicating copy to clipboard operation
Cpp_Primer_Practice copied to clipboard

练习10.37答案有误

Open JimLee1996 opened this issue 3 years ago • 0 comments

https://github.com/applenob/Cpp_Primer_Practice/blob/master/excersize/ch10.md#%E7%BB%83%E4%B9%A01037

copy(v.crend() - 8, v.crend() - 3, back_inserter(l));

# 检验
copy(v.cbegin() + 3, v.cbegin() + 8, front_inserter(l));

JimLee1996 avatar Nov 04 '21 03:11 JimLee1996