Question: 1 3 . 8 LAB: Ordered lists An OrderedList is a vector that keeps elements in sorted order. Complete template class OrderedList by defining the
LAB: Ordered lists
An OrderedList is a vector that keeps elements in sorted order.
Complete template class OrderedList by defining the following functions:
int Size
Return the size of the list
TheType Atint index
Return the element of the list at parameter index.
int FindTheType value
Return the index of the first element in the list equal to parameter value.
Return if parameter value is not found in the list.
bool RemoveTheType value
Search the list for parameter value. Hint: Use Find
If parameter value is found in the list, remove the element found by moving the subsequent elements towards the beginning of the list. Decrement list size and return true.
Return false if parameter value is not found in the list.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
