Create a generic function print(ls, n) that prints to standard output the first n elements of list ls. The elements are printed on separate lines. If ls has less than n elements, then the entire list is printed.  I attached a picture of what I have so far. I'm having a hard time figuring out how I would make it print a certain number of elements that I specify

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 13PE
icon
Related questions
Question

Create a generic function print(ls, n) that prints to standard output the first n elements of list ls. The elements are printed on separate lines. If ls has less than n elements, then the entire list is printed. 

I attached a picture of what I have so far. I'm having a hard time figuring out how I would make it print a certain number of elements that I specify.

1
O#include <iostream>
#include <list>
3
using namespace std;
4.
7
template <class T>
Qvoid print(const list<T>& ls,const int & n)
{
10
11
for (const T& e : 1s)
{
cout <« e << endl;
12
13
14
15
16
17
18
Dint main()
{
list <int> ls ({ 23,31,42,1,4,64,7,3,92 });
print(ls,4);
19
20
21
22
23
Transcribed Image Text:1 O#include <iostream> #include <list> 3 using namespace std; 4. 7 template <class T> Qvoid print(const list<T>& ls,const int & n) { 10 11 for (const T& e : 1s) { cout <« e << endl; 12 13 14 15 16 17 18 Dint main() { list <int> ls ({ 23,31,42,1,4,64,7,3,92 }); print(ls,4); 19 20 21 22 23
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning