Update the program from the previous exercise so that it prints only the unique elements. Your program should use unqiue_copy (§ 10.4.1, p. 403).
§ 10.4.1 (p. 403)
Exercise 10.26
Explain the differences among the three kinds of insert iterators.
Exercise 10.27
In addition to unique (§ 10.2.3, p. 384), the library defines function named unique_copy that takes a third iterator denoting a destination into which to copy the unique elements. Write a program that uses unique_copy to copy the unique elements from a vector into an initially empty list.
§ 10.2.3 (p. 384)
Exercise 10.6
Using fill_n, write a program to set a sequence of int values to 0.
Exercise 10.7
Determine if there are any errors in the following programs and, if so, correct the error(s):
(a) vector
vec; list lst; int i; while (cin >> i)
lst.push_back(i);
copy(lst.cbegin(), lst.cend(), vec.begin());
(b) vector
vec; vec.reserve(10); // reserve is covered in § 9.4 (p. 356)
fill_n(vec.begin(), 10, 0);
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.