Linked List (Part I) Data structure.

Slides:



Advertisements
Similar presentations
Chapter 22 Implementing lists: linked implementations.
Advertisements

STACKS & QUEUES. Stacks Abstract data types An abstract data type (ADT) is an abstraction of a data structure An ADT specifies : –Data stored –Operations.
Stacks, Queues, and Linked Lists
Chapter 3 – Lists A list is just what the name implies, a finite, ordered sequence of items. Order indicates each item has a position. A list of size 0.
CSE Lecture 12 – Linked Lists …
Queue Definition Ordered list with property: –All insertions take place at one end (tail) –All deletions take place at other end (head) Queue: Q = (a 0,
Queues. Queue Definition Ordered list with property: All insertions take place at one end (tail) All insertions take place at one end (tail) All deletions.
M180: Data Structures & Algorithms in Java
Data Structure (Part I) Stacks and Queues. Introduction to Stack An stack is a ordered list in which insertion and deletions are made at one end. –The.
Data Structures for Media Queues. Queue Abstract Data Type Queue Abstract Data Type Sequential Allocation Sequential Allocation Linked Allocation Linked.
ADT Stacks and Queues. Stack: Logical Level “An ordered group of homogeneous items or elements in which items are added and removed from only one end.”
Starting Out with C++: Early Objects 5/e © 2006 Pearson Education. All Rights Reserved Starting Out with C++: Early Objects 5 th Edition Chapter 18 Stacks.
Copyright © 2012 Pearson Education, Inc. Chapter 18: Stacks And Queues.
Chapter 4.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with C++ Early Objects Sixth Edition Chapter 18: Stacks and.
ADT Stacks and Queues. Stack: Logical Level “An ordered group of homogeneous items or elements in which items are added and removed from only one end.”
Chapter 7 Stacks II CS Data Structures I COSC 2006
Review 1 Introduction Representation of Linear Array In Memory Operations on linear Arrays Traverse Insert Delete Example.
Reference: Vinu V Das, Principles of Data Structures using C and C++
Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University Cpt S 122 – Data Structures Custom Templatized Data Structures.
1 Chapter 7 Stacks and Queues. 2 Stack ADT Recall that ADT is abstract data type, a set of data and a set of operations that act upon the data. In a stack,
Lab 7 Queue ADT. OVERVIEW The queue is one example of a constrained linear data structure. The elements in a queue are ordered from least recently added.
Nyhoff, ADTs, Data Structures and Problem Solving with C++, Second Edition, © 2005 Pearson Education, Inc. All rights reserved Stacks.
1 Linked-list, stack and queue. 2 Outline Abstract Data Type (ADT)‏ Linked list Stack Queue.
Review of Stacks and Queues Dr. Yingwu Zhu. How does a Stack Work? Last-in-First-out (LIFO) data structure Adding an item Push operation Removing an item.
Lists Chapter 8. 2 Linked Lists As an ADT, a list is –finite sequence (possibly empty) of elements Operations commonly include: ConstructionAllocate &
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide
Linked List (Part I). Introduction  Weakness of storing an ordered list in array: Insertion and deletion of arbitrary elements are expensive. ○ Example:
1 C++ Plus Data Structures Nell Dale Chapter 5 Linked Structures Modified from the slides by Sylvia Sorkin, Community College of Baltimore County - Essex.
Linked Lists Chapter Introduction To The Linked List ADT Linked list: set of data structures (nodes) that contain references to other data structures.
Chapter 3 Lists, Stacks, Queues. Abstract Data Types A set of items – Just items, not data types, nothing related to programming code A set of operations.
Section 3.7 Linked-Based Implementations
STACKS & QUEUES for CLASS XII ( C++).
CS505 Data Structures and Algorithms
Data Structure By Amee Trivedi.
Chapter 12 – Data Structures
CSCI-255 LinkedList.
Linked Lists Chapter 6 Section 6.4 – 6.6
12 C Data Structures.
Data Structure Dr. Mohamed Khafagy.
CSE 143 Linked Lists [Chapter , 8.8] 3/30/98.
Stacks and Queues.
Queues Queues Queues.
Programming Abstractions
Stack and Queue APURBO DATTA.
Stacks Stack: restricted variant of list
LinkedList Class.
LINKED LISTS CSCD Linked Lists.
Pointers and Dynamic Variables
Prof. Neary Adapted from slides by Dr. Katherine Gibson
CMSC 341 Lecture 5 Stacks, Queues
Chapter 16-2 Linked Structures
Stacks.
C++ Plus Data Structures
Object Oriented Programming COP3330 / CGS5409
Queues.
Chapter 18: Linked Lists.
Data Structures ADT List
Lists List: finite sequence of data elements
Programming Abstractions
ADT list.
Pointers & Dynamic Data Structures
Stacks and Queues.
Data Structures & Algorithms
Data Structures & Algorithms
CSI 1340 Introduction to Computer Science II
Dynamic allocation (continued)
Data Structures Chapter 4: Linked Lists.
Stacks and Linked Lists
Presentation transcript:

Linked List (Part I) Data structure

Introduction

Introduction Weakness of storing an ordered list in array: Insertion and deletion of arbitrary elements are expensive. Example: Given an array which is arranged in ascending order. Discuss how to insert a new element ‘1’ and how to delete the element ‘4’. Storage allocation is not flexible. 2 4 6 7

Possible Improvements The elements in an ordered list don’t need to be stored in consecutive memory space. The insertion and deletion of an element will not induce excessive data movement. The element can be “dynamically” allocated.

Linked Representation Data structure for a linked list: first Node Data Link (pointer): used to store the address of the next node.

Example 8 first BAT 3 CAT 4 FAT 1 2 CAT 4 3 FAT 4 5 6 8 first 7 BAT 3 1 2 CAT 4 3 FAT 4 5 6 8 first 7 BAT 3 8 9

Insertion Insert EAT into an ordered linked list 8 first BAT 3 CAT 6 4 FAT EAT EAT EAT EAT EAT 4 1 Find the position where EAT is to be inserted. 2 CAT 6 3 CAT 4 3 1) Get a new node a FAT 4 2) Set the data field of a to EAT. 5 3) Set the link field of a to point the node after CAT, which contains FAT. 6 EAT 6 EAT 4 6 6 8 first 7 4) Set the link field of the node containing CAT to a. BAT 3 8 9

Deletion Remove CAT from the linked list 8 first BAT 3 BAT 6 CAT 6 EAT 4 EAT 4 FAT 1 2 Find the address of CAT CAT 6 3 3 1) Set the link of BAT to EAT. FAT 4 2) Deallocate CAT 5 EAT 4 6 8 first 7 BAT 6 8 BAT 3 8 9

Representation of a Linked List class ListNode { friend class LinkedList; public: ListNode(); ListNode(DataField value); ~ListNode(); private: DataField data; ListNode *link; }; class ListNode { friend class LinkedList; public: ListNode(); ListNode(DataField value); ~ListNode(); private: DataField data; ListNode *link; }; first data link class LinkedList { private: ListNode * first; }; class LinkedList { private: ListNode * first; };

Linked Ordered List

Linked Ordered List Suppose elements are arranged in ascending order. ADT class LinkedOrderedList { public: LinkedOrderedList(); ~ LinkedOrderedList(); void Insert(DataField value); bool Delete(DataField value); //return false if value is not found. bool IsEmpty(); private: ListNode *first; };

Initialization The constructor of ListNode: The constructor of LinkedOrderedList: ListNode::ListNode(DataField value) { data = value; link = NULL; } LinkedOrderList::LinkedOrderList() { first = NULL; }

Algorithm of Insert() 01 void LinkedOrderList::Insert(DataField value) 02 { 03 curr = first; 04 while (curr != NULL) 05 { 06 if (curr->data >= value) 07 { 08 ListNode *a = new ListNode(value); 09 a->link = curr; 10 previous->link = a; 11 break; 12 } 13 previous = curr; 14 curr = curr->link; 15 } 16 }

Insertion Insert EAT into an ordered linked list previous previous 8 first BAT 3 CAT 4 CAT 6 FAT curr curr curr EAT 4 EAT a 03 curr = first; 04 while (curr != NULL) 05 { 06 if (curr->data >= value) 07 { 08 ListNode *a = new ListNode(value); 09 a->link = curr; 10 previous->link = a; 11 break; 12 } 13 previous = curr; 14 curr = curr->link; 15 }

Boundary Condition: Case 1 Consider to insert AT. There will be no previous node for AT. The update of first is required. first BAT CAT FAT AT

Boundary Condition: Case 2 Consider to insert GAT. first BAT CAT FAT GAT 03 curr = first; 04 while (curr != NULL) 05 { 06 if (curr->data >= value) 07 { 08 ListNode *a = new ListNode(value); 09 a->link = curr; 10 previous->link = a; 11 break; 12 } 13 previous = curr; 14 curr = curr->link; 15 } No statement is written to insert GAT at the end of the list.

Problem of Insert() The function Insert() fails to deal with boundary conditions. The insertion is always performed between two existing nodes. Improvements Add codes before- and after the while-statement for dealing with the boundary conditions. Always maintain two (dummy) nodes so that insertion can always be performed between two nodes.

Improvement Using Two Dummy Nodes Maintain two dummy nodes at each end of the list. class LinkedList { private: ListNode * first, *last; }; first last LinkedOrderList::LinkedOrderList() { first = new ListNode(); last = new ListNode(); first->link = last; last->link = NULL; } No need to update the pointer first. Boundary conditions are eliminated (Insertion and Deletion always take place between two nodes).

New Version of Insert() 01 void LinkedOrderList::Insert(DataField value) 02 { 03 previous = first; 04 curr = first->link; 05 while (curr != NULL) 06 { 07 if (curr == last || curr->data >= value) 08 { 09 ListNode *a = new ListNode(value); 10 a->link = curr; 11 previous->link = a; 12 break; 13 } 14 previous = curr; 15 curr = curr->link; 16 } 17 }

Algorithm of Delete() 01 bool LinkedOrderList::Delete(DataField value) 02 { 03 if (IsEmpty()) 04 return false; 05 06 previous = first; 07 curr = first->link; 08 while (curr != last) 09 { 10 if (curr->data == value) 11 { 12 previous->link = curr->link; 13 Deallocate curr; 14 return true; 15 } 16 previous = curr; 17 curr = curr->link; 18 } 19 return false; 20 }

Deletion Consider to remove BAT from the list. first last BAT previous curr curr->link 10 if (curr->data == value) 11 { 12 previous->link = curr->link; 13 Deallocate curr; 14 return true; 15 }

Destruction of Nodes Remember to deallocate each node in the destructor. 01 LinkedOrderList ::~ LinkedOrderList() 02 { 03 curr = first; 04 while (curr != NULL) 05 { 06 next = curr->link; 07 Deallocate curr; 08 curr = next; 09 } 10 }

Performance Analysis Suppose there are n nodes in a linked list. Space complexity: A linked list uses an exact amount of memory space to store these n nodes. Space complexity to perform a insertion or deletion O(1). Time complexity to perform a insertion or deletion: Consider a worst case in which nodes are always inserted and deleted at the end of the list. Therefore, the complexity is O(n). Excessive request of allocation or deallocation of memory space for a node increases loading for the OS system (and may lower efficiency).

4.6 LINKED STACKS AND QUEUE

Linked Stack data link top B Pop Pop Push D A D C E

Linked Queue Deletion takes place at front; insertion at rear. front B C D A E Pop Pop Push E

Implementation of Linked Queue LinkedQueue:: LinkedQueue() { front = rear = NULL; }; bool LinkedQueue::IsEmpty() { if (front is NULL and rear is NULL) return true; return false; }

Implementation of Linked Queue Datafield LinkedQueue::Pop() { if (IsEmpty()) output error; else delNode = front; value = front->data; front = front->link; deallocate delNode; return value; } }; void LinkedQueue::Push(Datafield value) { if (IsEmpty()) front = rear = new ListNode(value); else rear = rear->link = new ListNode(value); }; LinkedQueue::~ LinkedQueue() { while (!IsEmpty()) Pop(); };

Comparison Compare stack/queue implemented using array and linked stack/queue. Array Linked list Memory space The length of an array is fixed; Resize() is required if the stack is full. Memory space can be dynamically allocated. The storage is more compact. Execution time for Push() and Pop() The time complexity is O(1). The time complexity is also O(1). But the memory request increase overhead.

4.7 Polynomials

Polynomial Representation class ListNode { friend class LinkedList; public: ListNode(int c, int e); ~ListNode(); private: int coef, exp; ListNode *link; }; f(x) =3x2+1 first 3 2 1 coef exp class Polynomial { private: ListNode *first; };

Adding Polynomial Example Consider the following two polynomials: a(x) =3x14+2x8+1 b(x) =8x14-3x10+10x6 a.first 3 14 2 8 1 ai b.first 8 14 -3 10 10 6 bi

Case 1 ai->exp == bi->exp C.first 3 14 2 8 1 ai ai Add coefficients and append to the result C. 8 14 -3 10 10 6 bi Advance ai and bi to next term. C.first 11 14

Append the term indicated by bi to the result C. Case 2 ai->exp < bi->exp 3 14 2 8 1 ai Append the term indicated by bi to the result C. 8 14 -3 10 10 6 bi Advance bi to next term. C.first 11 14 -3 10

Append the term indicated by ai to the result C. Case 3 ai->exp > bi->exp Append the term indicated by ai to the result C. 3 14 2 8 1 ai Advance ai to next term. 8 14 -3 10 10 6 bi C.first 1 11 14 -3 10 2 8 10 6

Algorithm of Add() LinkedPolynomial LinkedPolynomial::Add(Polynomial B) { Create a new LinkedPolynomial C as result; ai = first; bi = B.first; while (ai != NULL && bi != NULL) if (ai->exp == bi->exp) { Sum = ai->coef + bi->coef; if (Sum != 0) C.InsertBack(Sum, ai->exp); ai = ai->link; bi = bi->link; } else if (ai->exp < bi->exp) { C.InsertBack(bi->coef, bi->exp); else if (ai->exp > bi->exp) { C.InsertBack(ai->coef, ai->exp); for (; ai != NULL; ai = ai->link) C.InsertBack(ai->coef, ai->exp); for (; bi != NULL; bi = bi->link) C.InsertBack(bi->coef, bi->exp); return C;