Chapter 17: Linked Lists

Similar documents
Chapter 17: Linked Lists

Ch. 17: Linked Lists. Introduction to Linked Lists

! A data structure representing a list. ! A series of dynamically allocated nodes. ! A separate pointer (the head) points to the first

Linked Lists. Linked list: a collection of items (nodes) containing two components: Data Address (link) of the next node in the list

Linked Lists. Linked list: a collection of items (nodes) containing two components: Data Address (link) of the next node in the list

! A data structure representing a list. ! A series of nodes chained together in sequence. ! A separate pointer (the head) points to the first

1 Short Answer (7 Points Each)

! A data type for which: ! An ADT may be implemented using various. ! Examples:

C++ is Fun Part 14 at Turbine/Warner Bros.! Russell Hanson

Linked Lists. Gaddis Ch. 17. CS 2308 :: Spring 2016 Molly O'Neil

! A data structure representing a list. ! A series of nodes chained together in sequence. ! A separate pointer (the head) points to the first

Chapter 18: Stacks And Queues. Pearson Education, Inc. Publishing as Pearson Addison-Wesley

Purpose of Review. Review some basic C++ Familiarize us with Weiss s style Introduce specific constructs useful for implementing data structures

Chapter 18: Stacks And Queues

The combination of pointers, structs, and dynamic memory allocation allow for creation of data structures

Dynamic Data Structures

5 Phases of Software Life Cycle

Queue Implementations

Doubly-Linked Lists

Chapter 18: Stacks And Queues

CS 103 Unit 15. Doubly-Linked Lists and Deques. Mark Redekopp

Array Lists. Lecture 15. Robb T. Koether. Hampden-Sydney College. Fri, Feb 16, 2018

Chapter 20: Binary Trees

EE 355 Unit 11b. Doubly-Linked Lists and Deques. Mark Redekopp

CSCE 110 PROGRAMMING FUNDAMENTALS

Abstract Data Types 1

Array Lists. Lecture 15. Robb T. Koether. Hampden-Sydney College. Mon, Feb 22, 2016

Abstract Data Types. CptS 223 Advanced Data Structures. Larry Holder School of Electrical Engineering and Computer Science Washington State University

COP4530 Data Structures, Algorithms and Generic Programming Recitation 4 Date: September 14/18-, 2008

CSCE 110 PROGRAMMING FUNDAMENTALS

DATA STRUCTURES AND ALGORITHMS LECTURE 08 QUEUES IMRAN IHSAN ASSISTANT PROFESSOR AIR UNIVERSITY, ISLAMABAD

Abstract Data Types 1

Chapter 11. Abstract Data Types and Encapsulation Concepts

2. List Implementations (a) Class Templates (b) Contiguous (c) Simply Linked (d) Simply Linked with Position Pointer (e) Doubly Linked

CS 103 Unit 11. Linked Lists. Mark Redekopp

ECE 250 Data Structures and Algorithms MID-TERM EXAMINATION B /13:30-14:50 MC-4021/RCH-211

ADT: Design & Implementation

by Pearson Education, Inc. All Rights Reserved. 2

Linked Lists. Contents. Steven J. Zeil. July 31, Linked Lists: the Basics 4

Object Oriented Programming COP3330 / CGS5409

CS 103 Unit 11. Linked Lists. Mark Redekopp

C++ - Lesson 2 This is a function prototype. a' is a function that takes an integer array argument and returns an integer pointer.

Linked List using a Sentinel

Linked Lists. Contents. Steven J. Zeil. July 31, Linked Lists: the Basics 3

Linked List. ape hen dog cat fox. tail. head. count 5

Introduction to the Linked List ADT

LECTURE 03 LINKED LIST

What is recursion? Recursion. How can a function call itself? Recursive message() modified. Week 10. contains a reference to itself.

Midterm Exam #2 Review. CS 2308 :: Spring 2016 Molly O'Neil

Ashish Gupta, Data JUET, Guna

the pointer range [first, last) into the tree

And Even More and More C++ Fundamentals of Computer Science

Programming II (CS300)

CA341 - Comparative Programming Languages

Linked Lists and other Dynamic Data Structures

What is recursion? Recursion. Recursive message() modified. How can a function call itself? contains a reference to itself. Week 10. Gaddis:

Chapter 7 Constructors and Other Tools. GEDB030 Computer Programming for Engineers Fall 2017 Euiseong Seo

Standard Template Library

What is recursion? Recursion. How can a function call itself? Recursive message() modified. Week 10. contains a reference to itself. Gaddis:

(8 1) Container Classes & Class Templates D & D Chapter 18. Instructor - Andrew S. O Fallon CptS 122 (October 8, 2018) Washington State University

Template based set of collection classes STL collection types (container types)

CS24 Week 4 Lecture 2

CMPT 225. Lecture 6 linked list

Linear Structures. Linear Structure. Implementations. Array details. List details. Operations 2/10/2013

CSE 333 Midterm Exam 5/9/14 Sample Solution

SSE2034: System Software Experiment 3

EE 355 Unit 10. C++ STL - Vectors and Deques. Mark Redekopp

BBM 201 DATA STRUCTURES

Computer Science II CSci 1200 Sections 1-4,6 Week 6, Friday Class October 5, 2001 Linked Lists, Part 2

CS 103 Unit 12 Slides

STL: C++ Standard Library

SCJ2013 Data Structure & Algorithms. Binary Search Tree. Nor Bahiah Hj Ahmad

Cpt S 122 Data Structures. Course Review FINAL. Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University

void insert( Type const & ) void push_front( Type const & )

G205 Fundamentals of Computer Engineering. CLASS 3, Wed. Sept Stefano Basagni Fall 2004 M-W, 1:30pm-3:10pm

Implementation. Learn how to implement the List interface Understand the efficiency trade-offs between the ArrayList and LinkedList implementations

! A data type for which: ! An ADT may be implemented using various. ! Examples:

Definition of Stack. 5 Linked Structures. Stack ADT Operations. ADT Stack Operations. A stack is a LIFO last in, first out structure.

CS183 Software Design. Textbooks. Grading Criteria. CS183-Su02-Lecture 1 20 May by Eric A. Durant, Ph.D. 1

CSE 143. Linked Lists. Linked Lists. Manipulating Nodes (1) Creating Nodes. Manipulating Nodes (3) Manipulating Nodes (2) CSE 143 1

#include <iostream> #include <cstdlib>

CPSC 260 Data Structures and Algorithms for Computer Engineers Linked Lists!

CS302 - Data Structures using C++

Linked Lists. What Is A Linked List? Example Declarations. An Alternative Collections Data Structure. Head

An Introduction to Queues With Examples in C++

SAURASHTRA UNIVERSITY

Overview of today s lecture. Quick recap of previous C lectures. Introduction to C programming, lecture 2. Abstract data type - Stack example

Linear Structures. Linear Structure. Implementations. Array details. List details. Operations 4/18/2013

Linked Lists. Linked List vs Array vs Python List Singly Linked List Bag ADT Revisited Building Linked Lists

University of Waterloo Department of Electrical and Computer Engineering ECE 250 Data Structures and Algorithms. Final Examination

Data Structure Series

Implementing Linked Lists

l Determine if a number is odd or even l Determine if a number/character is in a range - 1 to 10 (inclusive) - between a and z (inclusive)

ICOM 4035 Data Structures. Dr. Manuel Rodríguez Martínez Electrical and Computer Engineering Department

Pointers. Array. Solution to the data movement in sequential representation

A linked list. Subtopic: Linked lists. List-node structure type. Array implementation of a linked list. Inserting into a sorted collection

Templates and Vectors

CSI33 Data Structures

Lab 2: ADT Design & Implementation

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

Transcription:

Chapter 17: Linked Lists Copyright 2009 Pearson Education, Inc. Copyright Publishing as Pearson 2009 Pearson Addison-Wesley Education, Inc. Publishing as Pearson Addison-Wesley

17.1 Introduction to the Linked List ADT Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

Introduction to the Linked List ADT Linked list: set of data structures (nodes) that contain references to other data structures list head NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-3

Introduction to the Linked List ADT References may be addresses or array indices Data structures can be added to or removed from the linked list during execution newnode list head NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-4

Linked Lists vs. Arrays and Vectors Linked lists can grow and shrink as needed, unlike arrays, which have a fixed size Linked lists can insert a node between other nodes easily list head NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-5

Node Organization A node contains: data: one or more data fields may be organized as structure, object, etc. a pointer that can point to another node data pointer Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-6

Linked List Organization Linked list contains 0 or more nodes: NULL list head Has a list head to point to first node Last node points to NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-7

Empty List If a list currently contains 0 nodes, it is the empty list In this case the list head points to NULL list head NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-8

Declaring a Node Declare a node: struct ListNode { int data; ListNode *next; }; No memory is allocated at this time Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-9

Defining a Linked List Define a pointer for the head of the list: ListNode *head = NULL; Head pointer initialized to NULL to indicate an empty list head NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-10

NULL Pointer Is used to indicate end-of-list Should always be tested for before using a pointer: ListNode *p; while (p!= NULL)... Can also test the pointer itself: while (!p)... // same meaning // as above Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-11

17.2 Linked List Operations Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

Linked List Operations Basic operations: append a node to the end of the list insert a node within the list traverse the linked list delete a node delete/destroy the list Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-13

Contents of NumberList.h 1 // Specification file for the NumberList class 2 #ifndef NUMBERLIST_H 3 #define NUMBERLIST_H 4 5 class NumberList 6 { 7 private: 8 // Declare a structure for the list 9 struct ListNode 10 { 11 double value; // The value in this node 12 struct ListNode *next; // To point to the next node 13 }; 14 15 ListNode *head; // List head pointer 16 Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-14

Contents of NumberList.h (Continued) 17 public: 18 // Constructor 19 NumberList() 20 { head = NULL; } 21 22 // Destructor 23 ~NumberList(); 24 25 // Linked list operations 26 void appendnode(double); 27 void insertnode(double); 28 void deletenode(double); 29 void displaylist() const; 30 }; 31 #endif Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-15

Create a New Node Allocate memory for the new node: newnode = new ListNode; Initialize the contents of the node: newnode->value = num; Set the pointer field to NULL: newnode->next = NULL; newnode newnode newnode 23 NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-16 23

Appending a Node Add a node to the end of the list Basic process: Create the new node (as already described) Add node to the end of the list: If list is empty, set head pointer to this node Else, traverse the list to the end set pointer of last node to point to new node Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-17

Appending a Node 5 13 19 nodeptr NULL list head 23 NULL newnode New node created, end of list located Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-18

Appending a Node 5 13 19 nodeptr list head 23 NULL newnode New node added to end of list Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-19

C++ code for Appending a Node 11 void NumberList::appendNode(double num) 12 { 13 ListNode *newnode; // To point to a new node 14 ListNode *nodeptr; // To move through the list 15 16 // Allocate a new node and store num there. 17 newnode = new ListNode; 18 newnode->value = num; 19 newnode->next = NULL; 20 21 // If there are no nodes in the list 22 // make newnode the first node. 23 if (!head) Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-20

C++ code for Appending a Node (Continued) 24 head = newnode; 25 else // Otherwise, insert newnode at end. 26 { 27 // Initialize nodeptr to head of list. 28 nodeptr = head; 29 30 // Find the last node in the list. 31 while (nodeptr->next) 32 nodeptr = nodeptr->next; 33 34 // Insert newnode as the last node. 35 nodeptr->next = newnode; 36 } 37 } Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-21

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-22

Inserting a Node into a Linked List Used to maintain a linked list in order Requires two pointers to traverse the list: pointer to locate the node with data value greater than that of node to be inserted pointer to 'trail behind' one node, to point to node before point of insertion New node is inserted between the nodes pointed at by these pointers Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-23

Inserting a Node into a Linked List previousnode nodeptr 5 13 19 NULL list head 17 NULL newnode New node created, correct position located Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-24

Inserting a Node into a Linked List previousnode nodeptr 5 13 19 NULL list head 17 newnode New node inserted in order in the linked list Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-25

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-26

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-27

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-28

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-29

Traversing a Linked List Visit each node in a linked list: display contents, validate data, etc. Basic process: set a pointer to the contents of the head pointer while pointer is not NULL process data go to the next node by setting the pointer to the pointer field of the current node in the list end while Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-30

Traversing a Linked List nodeptr 5 13 19 NULL list head nodeptr points to the node containing 5, then the node containing 13, then the node containing 19, then points to NULL, and the list traversal stops Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-31

Deleting a Node Used to remove a node from a linked list If list uses dynamic memory, then delete node from memory Requires two pointers: one to locate the node to be deleted, one to point to the node before the node to be deleted Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-32

Deleting a Node previousnode nodeptr 5 13 19 NULL list head Locating the node containing 13 Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-33

Deleting a Node previousnode nodeptr 5 13 19 NULL list head Adjusting pointer around the node to be deleted Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-34

Deleting a Node previousnode nodeptr 5 19 NULL list head Linked list after deleting the node containing 13 Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-35

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-36

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-37

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-38

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-39

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-40

Destroying a Linked List Must remove all nodes used in the list To do this, use list traversal to visit each node For each node, Unlink the node from the list If the list uses dynamic memory, then free the node s memory Set the list head to NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-41

Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-42

17.3 A Linked List Template Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

A Linked List Template When declaring a linked list, must specify the type of data to be held in each node Using templates, can declare a linked list that can hold data type determined at list definition time See LinkedList.h (versions 1 and 2) and Program 17-5 Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-44

17.4 Variations of the Linked List Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

Variations of the Linked List Other linked list organizations: doubly-linked list: each node contains two pointers: one to the next node in the list, one to the previous node in the list 5 13 19 NULL list head NULL Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-46

Variations of the Linked List Other linked list organizations: circular linked list: the last node in the list points back to the first node in the list, not to NULL list head 5 13 19 Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-47

17.5 The STL list Container Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

The STL list Container Template for a doubly linked list Member functions for locating beginning, end of list: front, back, end adding elements to the list: insert, merge, push_back, push_front removing elements from the list: erase, pop_back, pop_front, unique See Table 17-1 for a list of member functions Copyright 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 17-49