Problem

Determine if there are any errors in the following programs and, if so, correct the error(...

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);

Exercise 9.31

The program on page 354 to remove even-valued elements and duplicate odd ones will not work on a list or forward_list. Why? Revise the program so that it works on these types as well.

Exercise 9.32

In the program onpage 354 would it be legal to write the call to insert as follows? If not, why not?

iter = vi.insert(iter, *iter++);

Step-by-Step Solution

Request Professional Solution

Request Solution!

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.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 10
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT