Download presentation
Presentation is loading. Please wait.
Published byWarren Briggs Modified over 8 years ago
1
Linked List
2
Is a series of connected nodes, where each node is a data structure with data and pointer(s) Advantages over array implementation Can grow and shrink in size, with no upper limit Fast insertion and deletion Ω head
3
Node struct nodeType { elemType data; nodeType *next; } nodeType *head; data pointer to node Note the recursive form of the data structure Note the recursive form of the data structure. Note the self-referencing form of the data structure. head
4
Basic List Operations Append (item) -- insert at back InsertAtFront(item) --insert at front of list InsertInOrder(iterm) -- insert in (some type of) order Delete(item) -- remove a particular item DestroyList() -- delete the entire list IsEmpty() -- true if list is empty; false, otherwise PrintList() -- for diagnostic purposes -- example of traversing a list (visiting each node in a list)
5
List Class Interface (list.h) typedef int elemType; class List { public: List(); // Constructor ~List(); // Destructor void append(elemType item); void insertAtFront(elemType item); void insertInOrder(elemType item); elemType removeFromFront(); void deleteNode(elemType item); void clear(); // remove all nodes bool isEmpty(); void print(); private: struct nodeType { elemType data; nodeType *next; // note “self-reference” }; nodeType *head; };
6
List() Operation (Constructor) A) Let head point to NULL Ω head Ω In list.cpp, assume the following directive: #define EMPTY -99999 // empty value List(){ head = NULL; } eeeeeenow eieiie List::List() { head = NULL; }
7
insertAtFront(item) Operation newNode A) Declare newNode pointer B) Create a new node, insert data newNode xxx 123 ΩΩ head Ω
8
insertAtFront (item) Operation C) Insert new node at front newNode xxx 123 head Ω Ω
9
void List::insertAtFront(elemType item){ // Prepare a new node nodeType *newNode; // pointer to new node newNode = new nodeType; // Create new node newNode->data = item; // Store data newNode->next = NULL; // Insert new node at front newNode->next = head; head = newNode; } insertAtFront(item) Operation
10
Does this algorithm work with an empty list? // Insert new node at front newNode->next = head; head = newNode;
11
Your Turn Write a C++ implementation of a removeFromFront() method, which removes an item from the front of a list and returns the item removed.
12
elemType removeFromFront() Operation temPtr A) Declare temPtr B) If (isEmpty())... return EMPTY Ω head Ω
13
elemType removeFromFront() Operation Else... C) Let temPtr point to where head points to: temPtr head temPtr Ω head Ω
14
elemType removeFromFront() Operation E) Save the item removed. D) Let head point to the 2 nd Node. temPtr head Ω temPtr head Ω elemType result = temPtr->data;
15
elemType removeFromFront() Operation G) Return the item removed. F) Delete the node. temPtr head Ω return result; delete temPtr;
16
elemType List::removeFromFront item){ if (isEmpty()) return NULL; nodePtr *temPtr; temPtr = head; head = head->next; elemType result = temPtr->data; delete temPtr; return result; } elemType removeFromFront() Operation
17
Your Turn Sketch a diagram of a linked list (with 5 nodes). Using the diagram, indicate the steps necessary to implement the append(item) method, which inserts an item at the end of the list.
18
append(item) Operation temPtrnewNode A) Declare temPtr, newNode pointers B) Create a new node, insert data newNode xxx 123 temPtr ΩΩ head Ω
19
append(item) Operation C) If list empty, make new node the first D) Otherwise, find the last node head Ω newNode xxx 123 Ω temPtr head Ω
20
append (item) Operation E) Insert new node at end temPtr newNode xxx 123 head Ω While temPtr.next != Null, move temPtr temPtr head Ω Ω Ω Ω
21
void List::append(elemType item){ // Prepare a new node nodeType *newNode; // pointer to new node nodeType *temPtr; // To move across list newNode = new nodeType; // Create new node newNode->data = item; // Store data newNode->next = NULL; // With empty list, make new node the first if (head == NULL) head = newNode; else{... append (item) Operation
22
... // Start at head of list temPtr = head; // Find the last node while (temPtr->next != NULL){ temPtr = temPtr->next; } // Insert node at end temPtr->next = newNode; }
23
insertInOrder(item) Operation temPtr newNode A) Declare temPtr, prevPtr, and newNode pointers B) Create a new node, insert data newNode xxx 5 temPtr Ω Ω head Ω 2 468 prevPtr
24
insertInOrder(item) Operation C) If list empty, make new node the first D) Otherwise, set temPtr to head, prevPtr to NULL temPtr head Ω newNode xxx 5 Ω prevPtr Ω head Ω 2 468
25
insertInOrder(item) Operation E) Skip all nodes whose data value < item. A pointer to the previous node is necessary in order to link a new node. 5 temPtr prevPtr head Ω 2 468
26
insertInOrder(item) Operation F) Link the new node to the one following it in order. G) Link the previous node to the new node. temPtr prevPtr head Ω 2 468 newNode xxx 5 Ω
27
Your Turn Sketch a diagram of linked list with 5 nodes. The list is pointed to by head. Write an algorithm to print the data content of each node.
28
print() Operation (List traversal) temPtr A) Declare temPtr B) temPtr head (Why not let head move down the list?) head Ω 2 468 prevPtr
29
print() Operation (cont.) C) While not at end of list, print current item. while (temPtr != NULL) { cout data << ‘ ‘; D) Move the temPtr. temPtr = temPtr->next; } head Ω 2 468
30
deleteNode(item) Operation temPtr A) Declare temPtr, prevPtr pointers (Why 2 ptrs?) B) If list is empty, done. head Ω 2 468 prevPtr item 6
31
deleteNode(item) Operation C ) If first node is to be deleted (if (item == head data): 1.1. Let temPtr = head next 2.2. Delete the first node ( delete head; ) 3.3. Let head = temPtr temPtr head Ω 468 temPtr head Ω 2 468
32
deleteNode(item) Operation D) Otherwise, find the node to be deleted. Set temPtr to head While (temPtr != NULL && tempPtr data != item) 1. Set prevPtr = temPtr 2. temPtr = temPtr next temPtr prevPtr head Ω 2 468
33
deleteNode(item) Operation The loop is exited for one of 2 reasons: 1. temPtr == NULL 2. temPtr->data == item If (temPtr != NULL) Let prevPtr next = temPtr next Delete node pointed to by temPt temPtr prevPtr head Ω 2 4 6 8
34
clear() Operation A)A) Traverse the list, deleting each node. B) B) Let head point to NULL. temPtr Ω head 2 468
35
clear() Operation (cont) temPtr1 Ω head 2 468 Let temPtr1 point to head. While (temPtr1 != NULL) Let temPtr2 point to temPtr1->next delete current node (pointed to by temPtr1) Let temPtr point to temPtr2 Let head point to NULL temPtr2
36
Other Forms of Linked List Linked list with a header node Advantages Can simplify algorithms for basic insertion and deletion, since even an empty list has a node. Can contain global values, like current node count, smallest value, etc. head 2 46 Ω
37
deleteNode(item) Suppose: temPtr points to a node to be deleted prevPtr points to a node before that node A list with a single node is not a special case prevPtr = temPtr.next; 5 head 2 prevPtr temPtr 46 Ω
38
Circular Linked List Last pointer, instead of ending the list, points to the first one. In fact, head and back has little meaning Can process list from anywhere. May arbitrarily designate one node as current, and use a pointer to process list. current
39
Traversing Circular Linked List current if (current != NULL){ temPtr = current; do { cout data next; }while (temPtr != current); }
40
Doubly Linked List (Data Structure) struct nodeType { elemType data; nodeType *next; // ptr to next node nodeType *prev; // ptr to previous node }; nodeType *head; nodeType *back;
41
Doubly Linked List Each node has two pointers To the next node To the previous node Allows for list processing in either direction with equal ease. Ω head Ω back
42
append(item) head back A) Prepare a new node. 123 B) If list is empty, head and back point to new node Ω Ω 123 Ω Ω temPtr
43
append(item) C) Else, insert at back Back next = temPtr temPtr prev = back Back = temPtr Ω head Ω back 123 temPtr Ω
44
Append(item) void Dlist::append(elemType item){ // Crreate a new node nodeType *newNode; newNode = new nodeType; newNode->data = item; newNode->next = NULL; newNode->prev = NULL; if (head == NULL){ head = newNode; back = newNode; } else { back->next = newNode; newNode->prev = back; back = newNode; }
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.