Vectors in C++

Vectors are a dynamic array-like data structure that stores elements of the same data type in a contiguous fashion that can resize itself automatically unlike arrays which mean vectors can grow when an element is inserted or shrink when an element is deleted.

  • Vectors are present in C++ Standard Template Library (STL).
  • We have to #include <vector> header file in our C++ program to use vectors.

Syntax to declare a Vector

vector<data_type> vectorName;

Commonly used Vector Functions

  • push_back() – It is used to insert the elements at the end of the vector.
  • pop_back() – It is used to pop or remove elements from the end of the vector.
  • clear() – It is used to remove all the elements of the vector.
  • empty() – It is used to check if the vector is empty.
  • at(i) – It is used to access the element at the specified index ‘i’.
  • front() – It is used to access the first element of the vector.
  • back() – It is used to access the last element of the vector.
  • erase() – It is used to remove an element at a specified position.

Example

C++




#include <iostream>
#include <vector>
using namespace std;
int main()
{
    // Create an empty vector
    vector<int> numbers;
  
    // push_back()
    numbers.push_back(10);
    numbers.push_back(20);
    numbers.push_back(30);
  
    // Accessing elements using at()
    // Output: 10
    cout << "Element at index 0: " << numbers.at(0) << endl;
    // Output: 20
    cout << "Element at index 1: " << numbers.at(1) << endl;
  
    // front() and back()
    // Output: 10
    cout << "First element: " << numbers.front() << endl;
    // Output: 30
    cout << "Last element: " << numbers.back() << endl;
  
    // pop_back()
    // Remove the last element
    numbers.pop_back();
  
    // erase()
    // Remove the element at index 1
    numbers.erase(numbers.begin() + 1);
  
    // empty()
    if (numbers.empty()) {
        cout << "Vector is empty" << endl;
    }
    else {
        cout << "Vector is not empty" << endl;
    }
  
    // clear()
    // Remove all elements
    numbers.clear();
  
    if (numbers.empty()) {
        cout << "Vector is empty" << endl;
    }
    else {
        cout << "Vector is not empty" << endl;
    }
  
    return 0;
}


Output

Element at index 0: 10
Element at index 1: 20
First element: 10
Last element: 30
Vector is not empty
Vector is empty

C++ Cheatsheet

This is a C++ programming cheat sheet. It is useful for beginners and intermediates looking to learn or revise the concepts of C++ programming. While learning a new language, it feels annoying to switch pages and find different websites for different concepts that are easily understandable. You can learn C++ concepts very easily using this cheat sheet.

C++ is a high-level programming language. It was developed in 1983 by Bjarne Stroustrup at Bell Labs. It is used for developing various applications.

Similar Reads

Let’s create our first C++ program

C++ #include using namespace std; int main() {   cout << "Hello World!";   return 0; }...

Basic Syntax of a Code in C++

...

Comments in C++

// Header files #include // std namespace contains various standard library components using namespace std; // main() function is the starting point of program execution int main() { // This is the section where we write code statements return 0; }...

Variables in C++

Comments can be used for providing an explanation of the code that makes it easier for others to understand the functionality of the code....

Data Types in C++

A variable is a storage location having a name that can hold a value of a specific data type....

Input and Output in C++

Data types are the type of data that a variable can store in a program....

Conditional Statements in C++

1. Input from user: We can take input from the user using cin from the iostream library....

Loop in C++

Conditional statements allow us to control the flow of the program based on certain conditions. It helps us to run a specific section of code based on a condition....

Arrays in C++

Loops are used to repeatedly execute a block of code multiple times....

Multi-Dimensional Arrays in C++

An array is a data structure that allows us to store a fixed number of elements of the same data type in contiguous memory locations....

Vectors in C++

...

References and Pointers

Multi-dimensional arrays are known as arrays of arrays that store similar types of data in tabular form....

Functions

...

String Functions in C++

Vectors are a dynamic array-like data structure that stores elements of the same data type in a contiguous fashion that can resize itself automatically unlike arrays which mean vectors can grow when an element is inserted or shrink when an element is deleted....

Math Functions in C++

...

Object-Oriented Programming in C++

References...

Class and Objects

Functions are the reusable block of a set of statements that performs a specific task. Functions can be used to organize the logic of the program....

Pillars of OOPS

...

File Handling in C++

There are several string functions present in Standard Template Library in C++ that are used to perform operations on strings. Some of the commonly used string functions are:...

Contact Us