vector.cc  :  create a std::vector
vecfun.cc  :  basic operations with std::vector
vecmem.cc  :  memory operations with std::vector
vec_it.cc  :  basic operations with iterators
i_oper.cc  :  insert and erase operations
i_type.cc  :  operations with iterators in template functions
fdeque.cc  :  basic operations with std::deque
vilist.cc  :  C++11: vector initialization with list
vfixed.cc  :  C++11: fixed size array

to compile:

c++ -Wall -o vector vector.cc
c++ -Wall -o vecfun vecfun.cc
c++ -Wall -o vecmem vecmem.cc
c++ -Wall -o vec_it vec_it.cc
c++ -Wall -o i_oper i_oper.cc
c++ -Wall -o i_type i_type.cc
c++ -Wall -o fdeque fdeque.cc
c++ -Wall -o vilist vilist.cc -std=c++11
c++ -Wall -o vfixed vfixed.cc -std=c++11
