vector в C++, это то же самое, что и list в Python Имеет синтаксис

vector<variable_type> variable_name
vector.push_back() // adding element to the end
vector.pop_back() // removing element from the end
vector.back() // return last element of vector

^0280cd Структуры данных