copy : Assigns the values of elements from a source range to a destination range, iterating through the source sequence of elements and assigning them new positions in a forward direction.将容器中的元素从一个区间复制到另一个区间。copy(first_source, Last_source, dest) 进行的是前向处理。
Neal: 可以往first_source, Last_source 之间的空间拷贝。
Code:
output: