Question: Implement SplitLists described in Exercise 3 as a client function. An Unsorted Type ADT is to be extended by the addition of function SplitLists, which

Implement SplitLists described in Exercise 3 as a client function.

An Unsorted Type ADT is to be extended by the addition of function SplitLists, which has the following specifications:

 Exercise 3

SplitLists(Unsorted Type list, Item Type item, UnsortedType& list1, Unsorted Type& list2) Function: 1. Implement SplitLists as an array-based member function of the Unsorted List ADT. 2. Implement SplitLists as a linked member function of the Unsorted List ADT.

SplitLists(Unsorted Type list, Item Type item, UnsortedType& list1, Unsorted Type& list2) Function: Preconditions: SplitLists(Unsorted Type list, Item Type item, Unsorted Type& list1, UnsortedType& list2) Postconditions: Divides list into two lists according to the key of item. list has been initialized and is not empty. list1 contains all the items of list whose keys are less than or equal to item's key; list2 contains all the items of list whose keys are greater than item's key.

Step by Step Solution

3.46 Rating (149 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

If we are to implement SplitLists as described in the exercise well need to define it in two variationsone for an arraybased implementation and anothe... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Language Pragmatics Questions!