#include "Node.h" #include "SortedList.h" /** * Removes all elements from list 'that' merging the nodes into the * current list 'this', while maintaiing the invariant that the * elements are sorted. */ void SortedList::merge(SortedList* that) { // complete this routine }