Open In App

Crossword Puzzle Of The Week #31 (C++ STL)

In this issue of Crossword Puzzle of the Week, we will dive into the topic of STL. The solution to the crossword puzzle is provided at the end.

Crossword Puzzle #31

HINTS:



ACROSS:

1. The STL provides a range of _______, such as vectors, lists, and maps.
4. ______ are the same as dynamic arrays with the ability to resize itself automatically when an element is inserted or deleted.
6. ____ is sequence container that allow non-contiguous memory allocation.
8. —— is a type of associative container similar to the set, with the exception that multiple elements can have the same values.
10.  No two ____ values can have the same key values.



DOWN:

2.______ are used to point at the memory addresses of STL containers.
3. _____ is sequence container with the feature of expansion and contraction on both ends.
5. _____ allow the working of the associated function to be customized with the help of parameters to be passed.
7. STL stands for Standard ______ Library .
9.______ is similar to a map with the addition that multiple elements can have the same keys.

Solution for Crossword Puzzle #31:

Crossword Puzzle #31

ANSWERS:

ACROSS:

1. Container
4. Vector
6. List
8. Multiset
10. Map

Down:

2. Iterator
3. Deque
5.Functions
7. Template
9. MultiMap

Article Tags :