testvector.cpp
1.28 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <iostream>
using namespace std;
#include "vector.h"
template<class C> void printvector (vector<C> v)
{
cout << v << endl;
}
int
main ()
{
vector<int> a (10);
cout << a << endl;
a[0] = 15;
a[5] = 32;
vector<int> b(10);
a.push_back(4);
a.push_back(5);
a.push_back(6);
a.push_back(7);
a.push_back(8);
a.push_back(9);
a.push_back(10);
a.push_back(11);
b=a;
printvector (b);
vector<string> c(10);
vector<string> d(15);
c[0]="ala";
c[9]="ma kota";
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
c.push_back("ooo");
cout << "About to assign vector" << endl;
d=c;
cout << "Vector assigned" << endl;
printvector(d);
}