implementing a sorted list as a linked structure cs 308 – data structures

26
Implementing a Sorted List as a Linked Structure CS 308 – Data Structures

Post on 22-Dec-2015

225 views

Category:

Documents


0 download

TRANSCRIPT

Implementing a Sorted List as a Linked

Structure CS 308 – Data Structures

SortedList Class Specification template <class ItemType>struct NodeType; template<class ItemType>class SortedType { public: SortedType(); ~SortedType(); void MakeEmpty(); bool IsFull() const; int LengthIs() const; void RetrieveItem(ItemType&, bool&); void InsertItem(ItemType); void DeleteItem(ItemType); void ResetList(); bool IsLastItem() const; void GetNextItem(ItemType&);

private: int length; NodeType<ItemType>* listData; NodeType<ItemType>* currentPos;};

Function RetrieveItem

Function RetrieveItem (cont.)template<class ItemType>void SortedType<ItemType>::RetrieveItem(ItemType& item,

bool& found){

NodeType<ItemType>* location; 

location = listData; found = false;

while( (location != NULL) && !found) { 

if (location->info < item) location = location->next; else if (location->info == item) { found = true; item = location->info; }

else location = NULL; // no reason to continue }}

Can we use Binary Search with linked lists?

Function InsertItem

Function InsertItem (cont.)

• Can we compare one item ahead?? (like in the unsorted list case?)

• In general, we must keep track of the previous pointer, as well as the current pointer.

Function InsertItem (cont.)

prevLoc = location

location=location->next

Inserting an element at the beginning of the list

newNode->next=location;

listData=newNode;

Case 1

Inserting an element in the middle of the list

newNode->next=location;prevLoc->next = newNode;Case 2

Inserting an element atthe end of the list

prevLoc->next = newNode;newNode->next=location;Case 3

Inserting into an empty list

listData=newNode;newNode->next=location;

Case 4

Function InsertItem (cont.)template <class ItemType>void SortedType<ItemType>::InsertItem(ItemType newItem){ NodeType<ItemType>* newNode; NodeType<ItemType>* predLoc; NodeType<ItemType>* location; bool stop; 

stop = false; location = listData; predLoc = NULL; 

while( location != NULL && !stop) { 

if (location->info < newItem) { predLoc = location; location = location->next; } else stop = true; }

Function InsertItem (cont.) newNode = new NodeType<ItemType>; newNode->info = newItem;  if (predLoc == NULL) { newNode->next = listData; cases (1) and (4) listData = newNode; } else { newNode->next = location; predLoc->next = newNode; cases (2) and (3) } length++;}

Function DeleteItem

• The DeleteItem we wrote for unsorted lists works for sorted lists as well

• Another possibility is to write a new DeleteItem based on the following cases

Deleting the only element in the list

Delete the first element in the list

Delete an element in the middle of the list

Delete the last element in the list

• Same as in the case of UnsortedList class

Other SortedList functions

Write a client function that takes two lists (unsorted or sorted) and returns a Boolean indicating whether the second list is a sublist of the first.

(i.e., the first list contains all the elements of the second list but may also contain other elements).

bool IsSubList (SortedType list1, SortedType list2){

ItemType item;bool subList, found;

sublist = true;

list2.ResetList();while ( !list2.IsLastItem() && sublist ) {

list2.GetNextItem (item);list1.RetrieveItem (item, found);if (!found) sublist = false;

}return sublist;

}

Write a member function that returns a pointer to the minimum node (i.e. the node storing the smallest value) of an unsorted list.

Precondition: list is not empty.

How would you implement the same function if the list

was sorted? (assume that the elements in a sorted list are sorted in increasing order).

NodeType<ItemType>* UnsortedType<ItemType>::MinNode(){

NodeType<ItemType * location, *tempLocation;ItemType minItem;

minItem = listData->info; tempLocation = listData;

location = listData; while (location->next != NULL) { location = location->next;

if (location->info < minItem) { minItem=location->info; tempLocation=location;}

}return tempLocation;

}

If the list is sorted, then you just need to return “listData” (pointer to the first element).

If the list is sorted, then you just need to return “listData” (pointer to the first element).

Comparing sorted list implementations

Big-O Comparison of Sorted List Operations

Operation Array Implementation

Linked Implementation

Class constructor O(1) O(1)

Destructor O(1) O(N)

MakeEmpty O(1) O(N)

IsFull O(1) O(1)

LengthIs O(1) O(1)

ResetList O(1) O(1)

GetNextItem O(1) O(1)

RetrieveNextItem O(N) or O(logN) O(N)

InsertItem O(N) O(N)

DeleteItem O(N) O(N)

Exercises

• 9, 15 - 18