applenob / Cpp_Primer_Practice

搞定C++:punch:。C++ Primer 中文版第5版学习仓库,包括笔记和课后练习答案。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

练习10.37答案有误

JimLee1996 opened this issue · 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));