Non-member function with access to member variables.
What is a friend function?
What is numOfElements - 1 ?
This iterator position is similar to nullptr
[first, last) = .end()
What is past end?
The limit bound that begins each binary search. while (....) { search for the value }
What is first < last?
The two data structures in Racket language.
In inheritance, when the base class and derived class have a function with the same identifier but different number and/or type of parameters.
What is function overloading?
The running time (O-notation) of the destructor implemented in the DArray class.
What is O(1) or constant?
Name the ordered STL containers.
What are sets, multisets, maps and multimaps ?
What is O(1) < O(log n) < O(n) < O(n log n) < O(n^2) < O(n^3) < O(2^n) ?
The function invoked with:
DArray a1(20);
Darray a2 = a1;
What is the copy constructor?
aVector {1 , 2 , 3 , 4 , 5}
The resulting vector after:
aVector.rotate(++aVector.begin(),aVector.begin() + aVector[3], aVector.end());
What is {1 , 5 , 2 , 3 , 4} ?
Solve the prefix:
*-+786+23
45
Function created to systemically delete dynamic nodes to which the object is pointing and resets all member variables to default values.
What is clearList?
The running time (O-notation) of the function printArray() implemented in the DArray class.
What is O(n) or linear?
What is bool operator==(param) const; ?