CSCI 41

Resources

Visual Studio Tutorial

Arrays

Arrays

Vectors

Vectors v/s Arrays

A Vector is a sequential-based container whereas an array is a data structure that stores a fixed number of elements (elements should be of the same type) in sequential order. ... Arrays have a fixed size whereas vectors have a dynamic size i.e they can resize themselves.


Array Size: Fixed 

Vector Size: Not fixed

Pointers

Single Linked Lists