CMPS1232: C++ STL Vectors

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Which of the following is the correct way to include the 'vector' header in C++?

  • `#include <list>`
  • `#include <vector>` (correct)
  • `#include <iostream>`
  • `#include <array>`

What is the primary advantage of using std::vector over traditional arrays in C++?

  • Arrays have built-in methods that enhance efficiency.
  • Vectors can dynamically resize, adapting to the number of elements stored. (correct)
  • Vectors have a fixed size, ensuring memory efficiency.
  • Arrays are part of the Standard Template Library.

Given a vector std::vector<int> numbers = {1, 2, 3, 4, 5};, how can you access the first element safely?

  • `numbers.at(1)`
  • `numbers[0]`
  • `numbers.element(0)`
  • `numbers.front()` (correct)

What is the purpose of the push_back() method in std::vector?

<p>To add an element to the end of the vector. (D)</p> Signup and view all the answers

If you have a std::vector<int> numbers; that is currently empty, what will numbers.size() return?

<p>0 (A)</p> Signup and view all the answers

What does the pop_back() function do to a std::vector?

<p>It removes the last element of the vector. (D)</p> Signup and view all the answers

How do you declare a 2D vector (a vector of vectors) of integers in C++?

<p><code>vector&lt;vector&lt;int&gt;&gt; my2DVector;</code> (D)</p> Signup and view all the answers

What is the Standard Template Library (STL)?

<p>A set of C++ template classes to provide common programming data structures and functions. (D)</p> Signup and view all the answers

Given std::vector<int> v = {10, 20, 30};, what happens when you try to access v[5]?

<p>It may lead to undefined behavior or a crash. (D)</p> Signup and view all the answers

Which method should be used for safer element access in a std::vector, providing bounds checking?

<p><code>at()</code> (B)</p> Signup and view all the answers

What is the difference between the size() and capacity() methods of a std::vector?

<p><code>size()</code> returns used memory, <code>capacity()</code> returns allocated memory. (D)</p> Signup and view all the answers

What is the correct way to initialize a std::vector<int> named numbers with the values 1, 2, 3, 4, and 5?

<p><code>std::vector&lt;int&gt; numbers = {1, 2, 3, 4, 5};</code> (A)</p> Signup and view all the answers

What will be the output of the following code snippet?

std::vector<int> v2(5);
std::cout << v2.size() << std::endl;

<p>5 (B)</p> Signup and view all the answers

Given a vector numbers, how would you use the sort function to sort it in ascending order?

<p><code>sort(numbers.begin(), numbers.end());</code> (B)</p> Signup and view all the answers

What is the result of the following code?

std::vector<int> v;
v.push_back(42);
v.pop_back();
if (v.empty()) {
 std::cout << "Vector is empty.";
}

<p>The code will print 'Vector is empty.' (B)</p> Signup and view all the answers

In the context of vectors, what is the significance of iterators like v.begin() and v.end()?

<p>They are used to define the scope for sorting a vector. (A)</p> Signup and view all the answers

Consider a std::vector<int> numbers = {1, 2, 3};. What happens when you execute numbers.insert(numbers.begin(), 10);?

<p>10 is inserted at the beginning, shifting other elements. (C)</p> Signup and view all the answers

Given std::vector<std::vector<int>> matrix(2, std::vector<int>(3, 0));, what does this line of code do?

<p>Creates a 2x3 matrix (2D vector) initialized with all elements set to 0. (B)</p> Signup and view all the answers

When should you prefer using std::vector::at() over std::vector::operator[] for element access?

<p>When you need bounds checking to prevent potential errors from out-of-range access. (C)</p> Signup and view all the answers

Which of the following statements best describes how C++ vectors handle memory allocation?

<p>Vectors initially allocate a small amount of memory and automatically reallocate more memory as needed when elements are added. (A)</p> Signup and view all the answers

Flashcards

What are Vectors in C++?

Vectors are dynamic arrays, part of the Standard Template Library, that can grow and shrink dynamically, and have built-in methods for easier manipulation.

How to include the vector header?

Before using vectors, include the vector header: #include <vector>

How to declare vectors?

Vectors can be declared empty (vector<int> v1;), with a specified size and default values (vector<int> v2(5);), or initialized with specific values (vector<int> v3 = {1, 2, 3, 4, 5};).

How to access vector elements?

Access vector elements directly using v[index] or safely with v.at(index). v.front() accesses the first, v.back() accesses the last element.

Signup and view all the flashcards

What are common vector operations?

v.push_back(value) adds an element to the end; v.pop_back() removes the last element (if the vector isn't empty); v.insert(v.begin(), value) inserts at the beginning.

Signup and view all the flashcards

How to declare a 2D vector?

A 2D vector is declared as a vector of vectors, for example: vector<vector<int>> matrix1;

Signup and view all the flashcards

How to initialize 2D vectors?

2D vectors can be initialized empty (vector<vector<int>> matrix1;), with a specified size and default values (vector<vector<int>> matrix2(2, vector<int>(3,0));), or initialized with specific values (vector<vector<int>> matrix3 = { {10, 2}, {2, 4}, {9, 11} };).

Signup and view all the flashcards

Study Notes

  • CMPS1232 is Principles of Programming II
  • The class uses C++ to solve bigger problems
  • The lecturer for the course is Dalwin D. Lewis

STL Vectors

  • Vectors are N-Dimensional dynamic arrays that are part of the Standard Template Library.
  • Vectors can grow and shrink dynamically, unlike arrays.
  • Vectors have built-in methods for easier manipulation.
  • Loops can be used to traverse and update N-Dimensional dynamic arrays.
  • Functions can be used to perform operations on N-Dimensional dynamic arrays.
  • To use vectors, the 'vector' header must be included: #include <vector>

Declaring Vectors

  • vector<int> v1; declares an empty vector.
  • vector<int> v2(5); declares a vector of size 5 with default values.
  • vector<int> v3 = {1, 2, 3, 4, 5}; declares and initializes a vector with specific values.

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

STL Files and 3D Objects Quiz
9 questions
STL 310: Liberty & Liberalism
9 questions
STL Components and Vectors
32 questions
STL PK KULIT
30 questions

STL PK KULIT

SafeChupacabra6430 avatar
SafeChupacabra6430
Use Quizgecko on...
Browser
Browser