testlist.cpp
586 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
using namespace std;
#include "list.h"
void
PrintList (list toPrint, ostream & Out)
{
int nextValue;
Out << "Printing list contents: " << endl;
toPrint.goToHead ();
if (!toPrint.moreData ())
{
Out << "List is empty" << endl;
return;
}
while (toPrint.moreData ())
{
nextValue = toPrint.getCurrentData ();
Out << nextValue << " ";
toPrint.advance ();
}
Out << endl;
}
int
main ()
{
list l;
l.insert (1);
l.insert (2);
l.insert (3);
PrintList (l, cout);
list l2;
l2=l;
PrintList (l2,cout);
}