SlideShare a Scribd company logo
1 of 50
LINK LIST




  SHEETAL WAGHMARE
  M.TECH (Computer Science & Data Processing)
  IIT KHARAGPUR
  EMAIL-ID: shitu2iitkgp@gmail.com
            sheetalw3@gmail.com
Instruction To Use This Presentation
 Dear user I have kept some
  animated/executable/video files so it will be easy for
  you to understand but that wont be run/play in
  slideshow

 To see/run that files you have to exit from slideshow
  then click on the icon and also install KM Player

 For example: click on the below icons one by one(
  one is executable file and other is video) you will be
  able to see the animation



SHEETAL WAGHMARE   FROM IIT KHARAGPUR
CONTENTS

SINGLY LINKLIST (INSERTION,DELETION,SORT,SEARCH)
STACK(PUSH,POP)
QUEUE(ADD,REMOVE)
CIRCULAR LINKLIST
DOUBLE ENDED QUEUE
CIRCULAR QUEUE
PRIORITY QUEUE
DOUBLY LINKLIST(INSERTION,DELETION,SORT,SEARCH)



    SHEETAL WAGHMARE   FROM IIT
    KHARAGPUR
What’s wrong with Array and Why lists?
   Disadvantages of arrays as storage data structures:
     slow searching in unordered array
     slow insertion in ordered array
     Fixed size
   Linked lists solve some of these problems




  SHEETAL WAGHMARE   FROM IIT
  KHARAGPUR
List Implementation using Linked Lists
 Linked list
   Linear collection of self-referential class objects, called nodes
   Connected by pointer links
   Accessed via a pointer to the first node of the list
   Link pointer in the last node is set to null to mark the list’s end
 Use a linked list instead of an array when
   You have an unpredictable number of data elements
   You want to insert and delete quickly.




      SHEETAL WAGHMARE   FROM IIT
      KHARAGPUR
Linked Lists

                     A               B           C

         Head

 A linked list is a series of connected nodes
 Each node contains at least
    A piece of data (any type)
    Pointer to the next node in the list
 Head: pointer to the first node                      node
 The last node points to NULL
                                                      A

     SHEETAL WAGHMARE    FROM IIT                    data     pointer
     KHARAGPUR
Part II: Linked Lists
As an abstract data type, a list is a finite sequence (possibly empty) of
elements with basic operations that vary from one application to
another.

Basic operations commonly include:

Construction:   Allocate and initialize a list object (usually empty)
Empty:          Check if list is empty
Insert:         Add an item to the list at any point
Delete:         Remove an item from the list at any point

Traverse:      Go through the list or a part of it, accessing and
processing theWAGHMARE in the order they are stored
       SHEETAL
               elements FROM IIT
       KHARAGPUR
Linked Representation
  Data structure for a linked list:


 first




           Node

          •Data
          •Link (pointer): used to store the address of the next node.




 SHEETAL WAGHMARE    FROM IIT
 KHARAGPUR
Anatomy of a linked list
 A linked list consists of:
    A sequence of nodes



  myList


                       a              b          c          d

     Each node contains a value
     and a link (pointer or reference) to some other node
     The last node contains a null link
     The list may (or may not) have a header
    SHEETAL WAGHMARE       FROM IIT
    KHARAGPUR
More terminology
 A node’s successor is the next node in the sequence
    The last node has no successor
 A node’s predecessor is the previous node in the sequence
    The first node has no predecessor
 A list’s length is the number of elements in it
    A list may be empty (contain no elements)




    SHEETAL WAGHMARE   FROM IIT
    KHARAGPUR
Linked Lists
 Types of linked lists:
   Singly linked list
      Begins with a pointer to the first node
      Terminates with a null pointer
      Only traversed in one direction
    Circular, singly linked
      Pointer in the last node points
       back to the first node
    Doubly linked list
      Two “start pointers” – first element and last element
      Each node has a forward pointer and a backward pointer
      Allows traversals both forwards and backwards
    Circular, doubly linked list
      Forward pointer of the last node points to the first node and backward pointer
       of the first node points to the last node
        SHEETAL WAGHMARE FROM IIT
         KHARAGPUR
Declarations
  First you must declare a data structure that will be used
   for the nodes. For example, the following struct could
   be used to create a list where each node holds a float:




  SHEETAL WAGHMARE   FROM IIT
  KHARAGPUR
Conventions of Linked List
There are several conventions for the link to indicate the end of
   the list.
1. A null link that points to no node (0 or NULL)
2. A dummy node that contains no item
3. A reference back to the first node, making it a circular list.




     SHEETAL WAGHMARE   FROM IIT
     KHARAGPUR
Convention of the linked list
 A special list is maintained which consists of unused memory
  cells. This list, which has its own pointer, is called the list of
  available space or the free storage list or the free pool.
 The operating system of a computer may periodically collect all
  the deleted space onto the free storage list. Any technique
  which does this collection is called garbage collection.




       SHEETAL WAGHMARE   FROM IIT
       KHARAGPUR
Conventions

 Sometimes new data are to be inserted into the data structure but
  there is no available space, i.e. the free storage list is empty. This
  situation is usually called overflow.
      means when AVAIL = NULL and there is an insertion.


 The term underflow refers to the situation where one wants to delete
  data from a data structure that is empty. The programmer may handle
  underflow by printing the message UNDERFLOW.
     means If START = NULL,



       SHEETAL WAGHMARE   FROM IIT
       KHARAGPUR
Inserting to the Front
head        93
         head              48   17        142




 There is no work to find the correct location
 Empty or not, head will point to the right location




  SHEETAL WAGHMARE   FROM IIT
  KHARAGPUR
Insert first position
   INFIRST(INFO,START,AVAIL,ITEM)
  1. [OVERFLOW] if AVAIL=NULL then write:OVERFLOW and exit.
  2. [remove first node from AVAIL list]
    set NEW=AVAIL and AVAIL=LINK[AVAIL].
  3. Set INFO[NEW]=ITEM [copies new data into new node]
  4. Set LINK[NEW]=START [new node now points to original first node]
  5. Set START=NEW [changes START so it points to the new node]
  6. Exit




  SHEETAL WAGHMARE   FROM IIT
  KHARAGPUR
Inserting to the Middle
head        17            48    142
                                 93
                                         //
                                          142
                                                 //



 Used when order is important
 Go to the node that should follow the one to
   add
    Recursion or iteration

  SHEETAL WAGHMARE   FROM IIT
  KHARAGPUR
Algorithm
 INSLOC[INFO,LINK,START,AVAIL,LOC,ITEM]
1. [OVERFLOW] if AVAIL=NULL then write OVERFLOW and exit.
2. [remove first node from AVAIL list]
       set NEW:=AVAIL and AVAIL:=LINK[AVAIL]
3. Set INFO[NEW]:=ITEM[copies new data into new node]
4. If LOC=NULL then [insert as a first node ]
 set LINK[NEW]:=START and START:=NEW
Else [insert after node with location Loc]
 set LINK[NEW]:=LINK[LOC] and LINK[LOC]:=NEW
[end of if structure]
5. Exit


                                              after.exe




       SHEETAL WAGHMARE   FROM IIT
       KHARAGPUR
Inserting to the End
head        48            17    142
                                      //93   //



 Find the end of the list
   (when at NIL)
    Recursion or iteration



  SHEETAL WAGHMARE   FROM IIT
  KHARAGPUR
Inserting to End of a Linked List
 Recursively traverse the list until at end
 Then:
   Create new node at current
   Fill in data
   Terminate the new node’s next pointer to point to NIL




     SHEETAL WAGHMARE   FROM IIT
     KHARAGPUR
Inserting to End of a Linked List
 1. allocate memory for the new node.
 2. Assign value to the data of the new node.
 3. if START is NULL then(if the list is empty)
       a. Make START point to the NEW node.
      b. make LAST point to the new node
      c. go to step 6.
   4. Make the next field of LAST point to the New node
   5. Mark the new node as LAST.
   6. Make the next field of the new node point to NULL.




          SHEETAL WAGHMARE    FROM IIT
          KHARAGPUR
Inserting to End of a Linked List
 INLAST(INFO,START,AVAIL,ITEM)
1. [OVERFLOW] if AVAIL=NULL then write:OVERFLOW and exit.
2, [remove first node from AVAIL list]
  set NEW=AVAIL and AVAIL=LINK[AVAIL].
3. Set INFO[NEW]=ITEM [copies new data into new node]
4. If START=NULL
Set START=NEW and LOC=START
5. Repeat step 6 untill LINK[LOC] != NULL
6. Set LOC=LINK[LOC]
7. Set LINK[LOC]=NEW
8. Exit



      SHEETAL WAGHMARE   FROM IIT
      KHARAGPUR
Inserting at the End of a Linked List
  head           48               17               142            53




                                                     current    Rnew_data 53

                                       current   Rnew_data 53

                  current      Rnew_data 53

    current   Rnew_data 53


     SHEETAL WAGHMARE       FROM IIT                                           end.exe
     KHARAGPUR
Find the desired element
 FINDB(INFO,LINK,START,ITEM,LOC,LOCP]
 This function finds the location LOC of the first node N which contains ITEM and the
   location LOCP of the node preceding N. if ITEM does not appear in the list, then the
   function set LOC=NULL and it item appears in the first node then it sets LOCP=NULL]
 1.[list empty?] if START=NULL then set LOC=NULL and
      LOCP=NULL and return.
     [end of if structure]
 2. [ITEM in first node?] if INFO[START]==ITEM then
 Set LOC=START and LCOP=NULL and return.
 [end of if structure]
 3 . Set SAVE=START and PTR=LINK[START] [intializes
      pointers]
 4. Repeat step 5 and 6 while PTR != NULL
 5. Contd…….
    SHEETAL WAGHMARE      FROM IIT
    KHARAGPUR
Contd….
 5. if INFO[PTR]=ITEM then
     Set LOC= PTR and LOCP=SAVE and return
     [end of IF structure]
  6. set SAVE=PTR and PTR=LINK[PTR] [ updates pointers]
      [end of step 4 loop]
 7. set LOC=NULL. [search unsuccessful]
 8. return .




      SHEETAL WAGHMARE   FROM IIT
      KHARAGPUR
Delete
 DELETE(INFO,LINK,START,AVAIL,ITEM)
 This algorithm deletes from a linked list the first node N which
    contains the given ITEM of information
   1.[use function FINDB]        call FINDB
   2. if LOC=NULL then write ITEM not in list and exit
   3. [delete node]
        if LOCP=NULL then set START=LINK[START] [delete first
    node]
   Else set LINK[ LOCP]=LINK[LOC]
   [end of if structure]
   4.[return deleted node to the AVAIL list]
    set LINK[LOC]=AVAIL and AVAIL=LOC
   Exit                                         deletion.exe
       SHEETAL WAGHMARE   FROM IIT
       KHARAGPUR
Sorting




SHEETAL WAGHMARE   FROM IIT
KHARAGPUR
Singly Linked Lists and Arrays
        Singly linked list                   Array
 Elements are stored in linear   Elements are stored in linear
 order, accessible with links.   order, accessible with an
                                 index.

 Do not have a fixed size.       Have a fixed size.

 Cannot access the previous      Can access the previous
 element directly.               element easily.

 No binary search.               Binary search.


 SHEETAL WAGHMARE    FROM IIT
 KHARAGPUR
ARRAY IMPLEMENTATION OF STACK
 PUSH:-
 1.if(top==max-1)
 1.print(stack overflow)
 2.else
 1.top=top+1
 2.stack arr[top]=pushed item
 3.endif
 end algorithm

 POP:-
 1.if (top==-1)
 1.print(stack underflow)
 2.else
 1.print(popped element is stack arr[top])
 2.top=top-1
 3.end if
 end algorithm
  SHEETAL WAGHMARE     FROM IIT
  KHARAGPUR
QUEUE IMPLEMENTATION
   Procedure Q INSERT (Q, FRONT, REAR,MAX,Y)
    1.[Overflow ?]
        IF REAR>=N
          THEN WRITE ("OVERFLOW")
       RETURN
    2.REAR<-REAR+1
    3.Q[REAR]<-Y
     4.IF FRONT=0
        THEN FRONT<-1
        RETURN
 ENQUEUE:-
    if(rear==(MAX-1))
          print (queue overflow)
      elseif (front==-1)
              front=0
            rear=rear+1
            queue_arr[rear]=added_item
    endif

       SHEETAL WAGHMARE       FROM IIT
       KHARAGPUR
 DEQUEUE
  if(front==-1 OR front>rear)
  print(queue underflow)
  else
  print(element deleted from queue,queue_arr[front])
  front=front+1
  end if
  end algorithm
 Procedure Q DELETE (Q,FRONT, REAR)
   1.UNDERFLOW
   IF FRONT=0
   THEN WRITE ("UNDERFLOW")
   RETURN
   2.Y<-Q[FRONT]
   3.IF FRONT=REAR
   THEN FRONT<-REAR<-0
   ELSE REAR<-REAR+1
   4.RETURN Y
   SHEETAL WAGHMARE    FROM IIT
   KHARAGPUR
PRIORITY QUEUE




                    priority queue.swf




SHEETAL WAGHMARE   FROM IIT KHARAGPUR
Circular Link list




   SHEETAL WAGHMARE   FROM IIT
   KHARAGPUR
10
  Insert into an empty
   list
                                          New    Rear
•Insert into Head of circular link list




             10          20          40          55      70

               New        Cur                              Prev
                                                        Rear
   New->next = Cur;
   Prev->next = New;

      SHEETAL WAGHMARE   FROM IIT
      KHARAGPUR
 Insert to middle of a Circular Linked List between
    Pre and Cur
                    New->next = Cur;
                    Prev->next = New;




          10           20                 55     70

                                   40
                            Prev           Cur    Rear
SHEETAL WAGHMARE   FROM IIT
KHARAGPUR                           New
CIRCULAR QUEUE                            circular queue.swf




Procedure CQINSERT(FRONT,        Procedure CQDELETE
REAR, Q , N ,Y)                  (FRONT, REAR, Q)
 1.IF R=N                          1.[Underflow?]
 THEN R<-1                         IF FRONT =0
 ELSE R<-R+1                       WRITE UNDERFLOW
 2.[Overflow?]                      2.Y<-Q[REAR]
 IF R=F                             3.IF FRONT=REAR
 THEN WRITE ("OVERFLOW")           THEN FRONT<-REAR<-0
 RETURN                            RETURN Y
 3.Q[R]<-Y                          4.IF FRONT= N
 4.                                THEN F<-1
 IF FRONT=0                        ELSE F<-F+1
 FRONT<-1                       
                                    RETURN Y
   SHEETAL WAGHMARE   FROM IIT
   KHARAGPUR
Doubly Linklist
 Traversing the list
 Traversal of a doubly linked list can be in either
  direction. In fact, the direction of traversal can change
  many times




SHEETAL WAGHMARE   FROM IIT
KHARAGPUR
 Forward:
  node := list.firstNode
  while node ≠ null
  <do something with node.data> //print the data
  node := node.next

 Backward:
  node := list.lastNode
  while node ≠ null
  <do something with node.data> // print data
  node := node.prev



    SHEETAL WAGHMARE   FROM IIT
    KHARAGPUR
Inserting into Doubly Linklist
 Inserting a node
 These symmetric functions insert a node either
  after or before a given node, with the diagram
  demonstrating after:




SHEETAL WAGHMARE   FROM IIT
KHARAGPUR
Insert After




 function insertAfter(List list, Node node, Node newNode)
 newNode.prev := node
 newNode.next := node.next
  if node.next == null
     list.lastNode := newNode
 else
      node.next.prev := newNode
       node.next := newNode

 SHEETAL WAGHMARE   FROM IIT
 KHARAGPUR
Insert Before
 function insertBefore(List list, Node node, Node newNode)
  newNode.prev := node.prev
  newNode.next := node
  if node.prev == null
      list.firstNode := newNode
 else
      node.prev.next := newNode
       node.prev := newNode




   SHEETAL WAGHMARE   FROM IIT
   KHARAGPUR
Insert at the Beginning

 function insertBeginning(List list, Node newNode)
  if list.firstNode == null
      list.firstNode := newNode
      list.lastNode := newNode
      newNode.prev := null
      newNode.next := null
 else
     insertBefore(list, list.firstNode, newNode)



   SHEETAL WAGHMARE   FROM IIT
   KHARAGPUR
Insert at the End

 function insertEnd(List list, Node newNode)
  if list.lastNode == null
     insertBeginning(list, newNode)
  else insertAfter(list, list.lastNode, newNode)




 SHEETAL WAGHMARE   FROM IIT
 KHARAGPUR
Deletion
 Deleting a node
 Deletion of a node is easier than insertion, but requires special
  handling if the node to be removed is the firstNode or lastNode:

 function remove(List list, Node node)
     if node.prev == null
      list.firstNode := node.next
    else
     node.prev.next := node.next
   if node.next == null
       list.lastNode := node.prev
   else node.next.prev := node.prev
          destroy node

SHEETAL WAGHMARE   FROM IIT
KHARAGPUR
Multi-lists
 Multi-lists are essentially the technique of embedding
  multiple lists into a single data structure.
 A multi-list has more than one next pointer, like a doubly
  linked list, but the pointers create separate lists.




SHEETAL WAGHMARE   FROM IIT KHARAGPUR
Multi-lists


head




 SHEETAL WAGHMARE   FROM IIT
 KHARAGPUR
Multi-lists

head




 SHEETAL WAGHMARE   FROM IIT
 KHARAGPUR
Multi-lists (Not Required)
                               head
head




 SHEETAL WAGHMARE   FROM IIT
 KHARAGPUR
EXAMPLE




 SHEETAL WAGHMARE   FROM IIT
 KHARAGPUR

More Related Content

What's hot

DATA STRUCTURES
DATA STRUCTURESDATA STRUCTURES
DATA STRUCTURESbca2010
 
linked list in Data Structure, Simple and Easy Tutorial
linked list in Data Structure, Simple and Easy Tutoriallinked list in Data Structure, Simple and Easy Tutorial
linked list in Data Structure, Simple and Easy TutorialAfzal Badshah
 
Linear search algorithm
Linear search algorithmLinear search algorithm
Linear search algorithmNeoClassical
 
Priority Queue in Data Structure
Priority Queue in Data StructurePriority Queue in Data Structure
Priority Queue in Data StructureMeghaj Mallick
 
Doubly Linked List
Doubly Linked ListDoubly Linked List
Doubly Linked ListNinad Mankar
 
Data Structures - Lecture 9 [Stack & Queue using Linked List]
 Data Structures - Lecture 9 [Stack & Queue using Linked List] Data Structures - Lecture 9 [Stack & Queue using Linked List]
Data Structures - Lecture 9 [Stack & Queue using Linked List]Muhammad Hammad Waseem
 
Data structure lecture 1
Data structure lecture 1Data structure lecture 1
Data structure lecture 1Kumar
 
Different types of Shoring Algorithms with Animation
Different types of Shoring Algorithms with AnimationDifferent types of Shoring Algorithms with Animation
Different types of Shoring Algorithms with AnimationZakaria Hossain
 
Presentation on the topic selection sort
Presentation on the topic selection sortPresentation on the topic selection sort
Presentation on the topic selection sortDistrict Administration
 
Data structure - Graph
Data structure - GraphData structure - Graph
Data structure - GraphMadhu Bala
 
Doubly linked list
Doubly linked listDoubly linked list
Doubly linked listchauhankapil
 
Introduction to stack
Introduction to stackIntroduction to stack
Introduction to stackvaibhav2910
 
Queue data structure
Queue data structureQueue data structure
Queue data structureanooppjoseph
 
How bubble sort works
How bubble sort worksHow bubble sort works
How bubble sort worksGaurav Kumar
 

What's hot (20)

Queue
QueueQueue
Queue
 
DATA STRUCTURES
DATA STRUCTURESDATA STRUCTURES
DATA STRUCTURES
 
linked list in Data Structure, Simple and Easy Tutorial
linked list in Data Structure, Simple and Easy Tutoriallinked list in Data Structure, Simple and Easy Tutorial
linked list in Data Structure, Simple and Easy Tutorial
 
Trees, Binary Search Tree, AVL Tree in Data Structures
Trees, Binary Search Tree, AVL Tree in Data Structures Trees, Binary Search Tree, AVL Tree in Data Structures
Trees, Binary Search Tree, AVL Tree in Data Structures
 
Stacks in c++
Stacks in c++Stacks in c++
Stacks in c++
 
AVL Tree in Data Structure
AVL Tree in Data Structure AVL Tree in Data Structure
AVL Tree in Data Structure
 
Linear search algorithm
Linear search algorithmLinear search algorithm
Linear search algorithm
 
Quick sort
Quick sortQuick sort
Quick sort
 
Priority Queue in Data Structure
Priority Queue in Data StructurePriority Queue in Data Structure
Priority Queue in Data Structure
 
Graph traversals in Data Structures
Graph traversals in Data StructuresGraph traversals in Data Structures
Graph traversals in Data Structures
 
Doubly Linked List
Doubly Linked ListDoubly Linked List
Doubly Linked List
 
Data Structures - Lecture 9 [Stack & Queue using Linked List]
 Data Structures - Lecture 9 [Stack & Queue using Linked List] Data Structures - Lecture 9 [Stack & Queue using Linked List]
Data Structures - Lecture 9 [Stack & Queue using Linked List]
 
Data structure lecture 1
Data structure lecture 1Data structure lecture 1
Data structure lecture 1
 
Different types of Shoring Algorithms with Animation
Different types of Shoring Algorithms with AnimationDifferent types of Shoring Algorithms with Animation
Different types of Shoring Algorithms with Animation
 
Presentation on the topic selection sort
Presentation on the topic selection sortPresentation on the topic selection sort
Presentation on the topic selection sort
 
Data structure - Graph
Data structure - GraphData structure - Graph
Data structure - Graph
 
Doubly linked list
Doubly linked listDoubly linked list
Doubly linked list
 
Introduction to stack
Introduction to stackIntroduction to stack
Introduction to stack
 
Queue data structure
Queue data structureQueue data structure
Queue data structure
 
How bubble sort works
How bubble sort worksHow bubble sort works
How bubble sort works
 

Viewers also liked

Linklist Creation
Linklist CreationLinklist Creation
Linklist CreationSwarup Saha
 
C Programming : Arrays
C Programming : ArraysC Programming : Arrays
C Programming : ArraysGagan Deep
 
Link list CSE ( Data structure ) .
Link list CSE  ( Data structure ) .Link list CSE  ( Data structure ) .
Link list CSE ( Data structure ) .Nirjhor003
 
Data Structure Lecture 5
Data Structure Lecture 5Data Structure Lecture 5
Data Structure Lecture 5Teksify
 
Link list(by harshit)
Link list(by harshit)Link list(by harshit)
Link list(by harshit)Harshit Jain
 
Cinterviews Binarysearch Tree
Cinterviews Binarysearch TreeCinterviews Binarysearch Tree
Cinterviews Binarysearch Treecinterviews
 
Skiena algorithm 2007 lecture07 heapsort priority queues
Skiena algorithm 2007 lecture07 heapsort priority queuesSkiena algorithm 2007 lecture07 heapsort priority queues
Skiena algorithm 2007 lecture07 heapsort priority queueszukun
 
Lecture17 arrays.ppt
Lecture17 arrays.pptLecture17 arrays.ppt
Lecture17 arrays.ppteShikshak
 
Array Presentation (EngineerBaBu.com)
Array Presentation (EngineerBaBu.com)Array Presentation (EngineerBaBu.com)
Array Presentation (EngineerBaBu.com)EngineerBabu
 
Algorithm: priority queue
Algorithm: priority queueAlgorithm: priority queue
Algorithm: priority queueTareq Hasan
 

Viewers also liked (20)

Linklist Creation
Linklist CreationLinklist Creation
Linklist Creation
 
C Programming : Arrays
C Programming : ArraysC Programming : Arrays
C Programming : Arrays
 
Linked list
Linked listLinked list
Linked list
 
Link list CSE ( Data structure ) .
Link list CSE  ( Data structure ) .Link list CSE  ( Data structure ) .
Link list CSE ( Data structure ) .
 
Data Structure Lecture 5
Data Structure Lecture 5Data Structure Lecture 5
Data Structure Lecture 5
 
Link list
Link listLink list
Link list
 
Singly link list
Singly link listSingly link list
Singly link list
 
Link list(by harshit)
Link list(by harshit)Link list(by harshit)
Link list(by harshit)
 
Cinterviews Binarysearch Tree
Cinterviews Binarysearch TreeCinterviews Binarysearch Tree
Cinterviews Binarysearch Tree
 
circular linked list
circular linked listcircular linked list
circular linked list
 
linked list
linked list linked list
linked list
 
Skiena algorithm 2007 lecture07 heapsort priority queues
Skiena algorithm 2007 lecture07 heapsort priority queuesSkiena algorithm 2007 lecture07 heapsort priority queues
Skiena algorithm 2007 lecture07 heapsort priority queues
 
Lecture17 arrays.ppt
Lecture17 arrays.pptLecture17 arrays.ppt
Lecture17 arrays.ppt
 
Priority queue
Priority queuePriority queue
Priority queue
 
Data Structure (Circular Linked List)
Data Structure (Circular Linked List)Data Structure (Circular Linked List)
Data Structure (Circular Linked List)
 
Link List
Link ListLink List
Link List
 
Priority queues
Priority queuesPriority queues
Priority queues
 
Array Presentation (EngineerBaBu.com)
Array Presentation (EngineerBaBu.com)Array Presentation (EngineerBaBu.com)
Array Presentation (EngineerBaBu.com)
 
Algorithm: priority queue
Algorithm: priority queueAlgorithm: priority queue
Algorithm: priority queue
 
Arrays In C++
Arrays In C++Arrays In C++
Arrays In C++
 

Similar to Linklist

ds 4Linked lists.ppt
ds 4Linked lists.pptds 4Linked lists.ppt
ds 4Linked lists.pptAlliVinay1
 
Unit 2 linked list and queues
Unit 2   linked list and queuesUnit 2   linked list and queues
Unit 2 linked list and queueskalyanineve
 
Bca data structures linked list mrs.sowmya jyothi
Bca data structures linked list mrs.sowmya jyothiBca data structures linked list mrs.sowmya jyothi
Bca data structures linked list mrs.sowmya jyothiSowmya Jyothi
 
Data structure lecture 5
Data structure lecture 5Data structure lecture 5
Data structure lecture 5Kumar
 
Unit ii(dsc++)
Unit ii(dsc++)Unit ii(dsc++)
Unit ii(dsc++)Durga Devi
 
Bsc cs ii dfs u-2 linklist,stack,queue
Bsc cs ii  dfs u-2 linklist,stack,queueBsc cs ii  dfs u-2 linklist,stack,queue
Bsc cs ii dfs u-2 linklist,stack,queueRai University
 
Mca ii dfs u-3 linklist,stack,queue
Mca ii dfs u-3 linklist,stack,queueMca ii dfs u-3 linklist,stack,queue
Mca ii dfs u-3 linklist,stack,queueRai University
 
cp264_lecture13_14_linkedlist.ppt
cp264_lecture13_14_linkedlist.pptcp264_lecture13_14_linkedlist.ppt
cp264_lecture13_14_linkedlist.pptssuser9dd05f
 
Bca ii dfs u-2 linklist,stack,queue
Bca ii  dfs u-2 linklist,stack,queueBca ii  dfs u-2 linklist,stack,queue
Bca ii dfs u-2 linklist,stack,queueRai University
 
STACK, LINKED LIST ,AND QUEUE
STACK, LINKED LIST ,AND QUEUESTACK, LINKED LIST ,AND QUEUE
STACK, LINKED LIST ,AND QUEUEDev Chauhan
 
Data Structure and Algorithms Linked List
Data Structure and Algorithms Linked ListData Structure and Algorithms Linked List
Data Structure and Algorithms Linked ListManishPrajapati78
 
IRJET- Dynamic Implementation of Stack using Single Linked List
IRJET- Dynamic Implementation of Stack using Single Linked ListIRJET- Dynamic Implementation of Stack using Single Linked List
IRJET- Dynamic Implementation of Stack using Single Linked ListIRJET Journal
 
Linked list and its operations - Traversal
Linked list and its operations - TraversalLinked list and its operations - Traversal
Linked list and its operations - Traversalkasthurimukila
 
Linked List Presentation in data structurepptx
Linked List Presentation in data structurepptxLinked List Presentation in data structurepptx
Linked List Presentation in data structurepptxnikhilcse1
 

Similar to Linklist (20)

Linked list
Linked list Linked list
Linked list
 
ds 4Linked lists.ppt
ds 4Linked lists.pptds 4Linked lists.ppt
ds 4Linked lists.ppt
 
Unit 2 linked list and queues
Unit 2   linked list and queuesUnit 2   linked list and queues
Unit 2 linked list and queues
 
Bca data structures linked list mrs.sowmya jyothi
Bca data structures linked list mrs.sowmya jyothiBca data structures linked list mrs.sowmya jyothi
Bca data structures linked list mrs.sowmya jyothi
 
DS Unit 2.ppt
DS Unit 2.pptDS Unit 2.ppt
DS Unit 2.ppt
 
Algo>ADT list & linked list
Algo>ADT list & linked listAlgo>ADT list & linked list
Algo>ADT list & linked list
 
Data structure lecture 5
Data structure lecture 5Data structure lecture 5
Data structure lecture 5
 
Unit ii(dsc++)
Unit ii(dsc++)Unit ii(dsc++)
Unit ii(dsc++)
 
Linked list
Linked listLinked list
Linked list
 
Bsc cs ii dfs u-2 linklist,stack,queue
Bsc cs ii  dfs u-2 linklist,stack,queueBsc cs ii  dfs u-2 linklist,stack,queue
Bsc cs ii dfs u-2 linklist,stack,queue
 
Mca ii dfs u-3 linklist,stack,queue
Mca ii dfs u-3 linklist,stack,queueMca ii dfs u-3 linklist,stack,queue
Mca ii dfs u-3 linklist,stack,queue
 
Linked Lists.pdf
Linked Lists.pdfLinked Lists.pdf
Linked Lists.pdf
 
cp264_lecture13_14_linkedlist.ppt
cp264_lecture13_14_linkedlist.pptcp264_lecture13_14_linkedlist.ppt
cp264_lecture13_14_linkedlist.ppt
 
Bca ii dfs u-2 linklist,stack,queue
Bca ii  dfs u-2 linklist,stack,queueBca ii  dfs u-2 linklist,stack,queue
Bca ii dfs u-2 linklist,stack,queue
 
STACK, LINKED LIST ,AND QUEUE
STACK, LINKED LIST ,AND QUEUESTACK, LINKED LIST ,AND QUEUE
STACK, LINKED LIST ,AND QUEUE
 
Linear data structure concepts
Linear data structure conceptsLinear data structure concepts
Linear data structure concepts
 
Data Structure and Algorithms Linked List
Data Structure and Algorithms Linked ListData Structure and Algorithms Linked List
Data Structure and Algorithms Linked List
 
IRJET- Dynamic Implementation of Stack using Single Linked List
IRJET- Dynamic Implementation of Stack using Single Linked ListIRJET- Dynamic Implementation of Stack using Single Linked List
IRJET- Dynamic Implementation of Stack using Single Linked List
 
Linked list and its operations - Traversal
Linked list and its operations - TraversalLinked list and its operations - Traversal
Linked list and its operations - Traversal
 
Linked List Presentation in data structurepptx
Linked List Presentation in data structurepptxLinked List Presentation in data structurepptx
Linked List Presentation in data structurepptx
 

More from SHEETAL WAGHMARE

More from SHEETAL WAGHMARE (7)

Heaps
HeapsHeaps
Heaps
 
Multi ways trees
Multi ways treesMulti ways trees
Multi ways trees
 
Sales Force Automation
Sales Force AutomationSales Force Automation
Sales Force Automation
 
Enterprise Relationship Management
Enterprise Relationship ManagementEnterprise Relationship Management
Enterprise Relationship Management
 
Call Center
Call CenterCall Center
Call Center
 
Introduction To CRM
Introduction To CRMIntroduction To CRM
Introduction To CRM
 
Tree
TreeTree
Tree
 

Recently uploaded

Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfDr Vijay Vishwakarma
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 

Recently uploaded (20)

Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 

Linklist

  • 1. LINK LIST SHEETAL WAGHMARE M.TECH (Computer Science & Data Processing) IIT KHARAGPUR EMAIL-ID: shitu2iitkgp@gmail.com sheetalw3@gmail.com
  • 2. Instruction To Use This Presentation  Dear user I have kept some animated/executable/video files so it will be easy for you to understand but that wont be run/play in slideshow  To see/run that files you have to exit from slideshow then click on the icon and also install KM Player  For example: click on the below icons one by one( one is executable file and other is video) you will be able to see the animation SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 3. CONTENTS SINGLY LINKLIST (INSERTION,DELETION,SORT,SEARCH) STACK(PUSH,POP) QUEUE(ADD,REMOVE) CIRCULAR LINKLIST DOUBLE ENDED QUEUE CIRCULAR QUEUE PRIORITY QUEUE DOUBLY LINKLIST(INSERTION,DELETION,SORT,SEARCH) SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 4. What’s wrong with Array and Why lists?  Disadvantages of arrays as storage data structures:  slow searching in unordered array  slow insertion in ordered array  Fixed size  Linked lists solve some of these problems SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 5. List Implementation using Linked Lists  Linked list  Linear collection of self-referential class objects, called nodes  Connected by pointer links  Accessed via a pointer to the first node of the list  Link pointer in the last node is set to null to mark the list’s end  Use a linked list instead of an array when  You have an unpredictable number of data elements  You want to insert and delete quickly. SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 6. Linked Lists A B C Head  A linked list is a series of connected nodes  Each node contains at least  A piece of data (any type)  Pointer to the next node in the list  Head: pointer to the first node node  The last node points to NULL A SHEETAL WAGHMARE FROM IIT data pointer KHARAGPUR
  • 7. Part II: Linked Lists As an abstract data type, a list is a finite sequence (possibly empty) of elements with basic operations that vary from one application to another. Basic operations commonly include: Construction: Allocate and initialize a list object (usually empty) Empty: Check if list is empty Insert: Add an item to the list at any point Delete: Remove an item from the list at any point Traverse: Go through the list or a part of it, accessing and processing theWAGHMARE in the order they are stored SHEETAL elements FROM IIT KHARAGPUR
  • 8. Linked Representation  Data structure for a linked list: first Node •Data •Link (pointer): used to store the address of the next node. SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 9. Anatomy of a linked list  A linked list consists of:  A sequence of nodes myList a b c d Each node contains a value and a link (pointer or reference) to some other node The last node contains a null link The list may (or may not) have a header SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 10. More terminology  A node’s successor is the next node in the sequence  The last node has no successor  A node’s predecessor is the previous node in the sequence  The first node has no predecessor  A list’s length is the number of elements in it  A list may be empty (contain no elements) SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 11. Linked Lists  Types of linked lists:  Singly linked list  Begins with a pointer to the first node  Terminates with a null pointer  Only traversed in one direction  Circular, singly linked  Pointer in the last node points back to the first node  Doubly linked list  Two “start pointers” – first element and last element  Each node has a forward pointer and a backward pointer  Allows traversals both forwards and backwards  Circular, doubly linked list  Forward pointer of the last node points to the first node and backward pointer of the first node points to the last node SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 12. Declarations  First you must declare a data structure that will be used for the nodes. For example, the following struct could be used to create a list where each node holds a float: SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 13. Conventions of Linked List There are several conventions for the link to indicate the end of the list. 1. A null link that points to no node (0 or NULL) 2. A dummy node that contains no item 3. A reference back to the first node, making it a circular list. SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 14. Convention of the linked list  A special list is maintained which consists of unused memory cells. This list, which has its own pointer, is called the list of available space or the free storage list or the free pool.  The operating system of a computer may periodically collect all the deleted space onto the free storage list. Any technique which does this collection is called garbage collection. SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 15. Conventions  Sometimes new data are to be inserted into the data structure but there is no available space, i.e. the free storage list is empty. This situation is usually called overflow. means when AVAIL = NULL and there is an insertion.  The term underflow refers to the situation where one wants to delete data from a data structure that is empty. The programmer may handle underflow by printing the message UNDERFLOW. means If START = NULL, SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 16. Inserting to the Front head 93 head 48 17 142  There is no work to find the correct location  Empty or not, head will point to the right location SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 17. Insert first position  INFIRST(INFO,START,AVAIL,ITEM) 1. [OVERFLOW] if AVAIL=NULL then write:OVERFLOW and exit. 2. [remove first node from AVAIL list] set NEW=AVAIL and AVAIL=LINK[AVAIL]. 3. Set INFO[NEW]=ITEM [copies new data into new node] 4. Set LINK[NEW]=START [new node now points to original first node] 5. Set START=NEW [changes START so it points to the new node] 6. Exit SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 18. Inserting to the Middle head 17 48 142 93 // 142 //  Used when order is important  Go to the node that should follow the one to add  Recursion or iteration SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 19. Algorithm  INSLOC[INFO,LINK,START,AVAIL,LOC,ITEM] 1. [OVERFLOW] if AVAIL=NULL then write OVERFLOW and exit. 2. [remove first node from AVAIL list] set NEW:=AVAIL and AVAIL:=LINK[AVAIL] 3. Set INFO[NEW]:=ITEM[copies new data into new node] 4. If LOC=NULL then [insert as a first node ] set LINK[NEW]:=START and START:=NEW Else [insert after node with location Loc] set LINK[NEW]:=LINK[LOC] and LINK[LOC]:=NEW [end of if structure] 5. Exit after.exe SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 20. Inserting to the End head 48 17 142 //93 //  Find the end of the list (when at NIL)  Recursion or iteration SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 21. Inserting to End of a Linked List  Recursively traverse the list until at end  Then:  Create new node at current  Fill in data  Terminate the new node’s next pointer to point to NIL SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 22. Inserting to End of a Linked List  1. allocate memory for the new node.  2. Assign value to the data of the new node.  3. if START is NULL then(if the list is empty)  a. Make START point to the NEW node.  b. make LAST point to the new node  c. go to step 6.  4. Make the next field of LAST point to the New node  5. Mark the new node as LAST.  6. Make the next field of the new node point to NULL. SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 23. Inserting to End of a Linked List  INLAST(INFO,START,AVAIL,ITEM) 1. [OVERFLOW] if AVAIL=NULL then write:OVERFLOW and exit. 2, [remove first node from AVAIL list] set NEW=AVAIL and AVAIL=LINK[AVAIL]. 3. Set INFO[NEW]=ITEM [copies new data into new node] 4. If START=NULL Set START=NEW and LOC=START 5. Repeat step 6 untill LINK[LOC] != NULL 6. Set LOC=LINK[LOC] 7. Set LINK[LOC]=NEW 8. Exit SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 24. Inserting at the End of a Linked List head 48 17 142 53 current Rnew_data 53 current Rnew_data 53 current Rnew_data 53 current Rnew_data 53 SHEETAL WAGHMARE FROM IIT end.exe KHARAGPUR
  • 25. Find the desired element FINDB(INFO,LINK,START,ITEM,LOC,LOCP] This function finds the location LOC of the first node N which contains ITEM and the location LOCP of the node preceding N. if ITEM does not appear in the list, then the function set LOC=NULL and it item appears in the first node then it sets LOCP=NULL] 1.[list empty?] if START=NULL then set LOC=NULL and LOCP=NULL and return. [end of if structure] 2. [ITEM in first node?] if INFO[START]==ITEM then Set LOC=START and LCOP=NULL and return. [end of if structure] 3 . Set SAVE=START and PTR=LINK[START] [intializes pointers] 4. Repeat step 5 and 6 while PTR != NULL 5. Contd……. SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 26. Contd….  5. if INFO[PTR]=ITEM then Set LOC= PTR and LOCP=SAVE and return [end of IF structure] 6. set SAVE=PTR and PTR=LINK[PTR] [ updates pointers] [end of step 4 loop] 7. set LOC=NULL. [search unsuccessful] 8. return . SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 27. Delete  DELETE(INFO,LINK,START,AVAIL,ITEM)  This algorithm deletes from a linked list the first node N which contains the given ITEM of information  1.[use function FINDB] call FINDB  2. if LOC=NULL then write ITEM not in list and exit  3. [delete node]  if LOCP=NULL then set START=LINK[START] [delete first node]  Else set LINK[ LOCP]=LINK[LOC]  [end of if structure]  4.[return deleted node to the AVAIL list]  set LINK[LOC]=AVAIL and AVAIL=LOC  Exit deletion.exe SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 28. Sorting SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 29. Singly Linked Lists and Arrays Singly linked list Array Elements are stored in linear Elements are stored in linear order, accessible with links. order, accessible with an index. Do not have a fixed size. Have a fixed size. Cannot access the previous Can access the previous element directly. element easily. No binary search. Binary search. SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 30. ARRAY IMPLEMENTATION OF STACK PUSH:- 1.if(top==max-1) 1.print(stack overflow) 2.else 1.top=top+1 2.stack arr[top]=pushed item 3.endif end algorithm POP:- 1.if (top==-1) 1.print(stack underflow) 2.else 1.print(popped element is stack arr[top]) 2.top=top-1 3.end if end algorithm SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 31. QUEUE IMPLEMENTATION  Procedure Q INSERT (Q, FRONT, REAR,MAX,Y) 1.[Overflow ?] IF REAR>=N THEN WRITE ("OVERFLOW") RETURN 2.REAR<-REAR+1 3.Q[REAR]<-Y 4.IF FRONT=0 THEN FRONT<-1 RETURN  ENQUEUE:- if(rear==(MAX-1)) print (queue overflow) elseif (front==-1) front=0 rear=rear+1 queue_arr[rear]=added_item endif SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 32.  DEQUEUE if(front==-1 OR front>rear) print(queue underflow) else print(element deleted from queue,queue_arr[front]) front=front+1 end if end algorithm  Procedure Q DELETE (Q,FRONT, REAR) 1.UNDERFLOW IF FRONT=0 THEN WRITE ("UNDERFLOW") RETURN 2.Y<-Q[FRONT] 3.IF FRONT=REAR THEN FRONT<-REAR<-0 ELSE REAR<-REAR+1 4.RETURN Y SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 33. PRIORITY QUEUE priority queue.swf SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 34. Circular Link list SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 35. 10  Insert into an empty list New Rear •Insert into Head of circular link list 10 20 40 55 70 New Cur Prev Rear New->next = Cur; Prev->next = New; SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 36.  Insert to middle of a Circular Linked List between Pre and Cur New->next = Cur; Prev->next = New; 10 20 55 70 40 Prev Cur Rear SHEETAL WAGHMARE FROM IIT KHARAGPUR New
  • 37. CIRCULAR QUEUE circular queue.swf Procedure CQINSERT(FRONT, Procedure CQDELETE REAR, Q , N ,Y) (FRONT, REAR, Q)  1.IF R=N  1.[Underflow?]  THEN R<-1  IF FRONT =0  ELSE R<-R+1  WRITE UNDERFLOW  2.[Overflow?]  2.Y<-Q[REAR]  IF R=F  3.IF FRONT=REAR  THEN WRITE ("OVERFLOW")  THEN FRONT<-REAR<-0  RETURN  RETURN Y  3.Q[R]<-Y  4.IF FRONT= N  4.  THEN F<-1  IF FRONT=0  ELSE F<-F+1  FRONT<-1   RETURN Y SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 38. Doubly Linklist  Traversing the list  Traversal of a doubly linked list can be in either direction. In fact, the direction of traversal can change many times SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 39.  Forward: node := list.firstNode while node ≠ null <do something with node.data> //print the data node := node.next  Backward: node := list.lastNode while node ≠ null <do something with node.data> // print data node := node.prev SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 40. Inserting into Doubly Linklist  Inserting a node  These symmetric functions insert a node either after or before a given node, with the diagram demonstrating after: SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 41. Insert After function insertAfter(List list, Node node, Node newNode) newNode.prev := node newNode.next := node.next if node.next == null list.lastNode := newNode else node.next.prev := newNode node.next := newNode SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 42. Insert Before  function insertBefore(List list, Node node, Node newNode) newNode.prev := node.prev newNode.next := node if node.prev == null list.firstNode := newNode else node.prev.next := newNode node.prev := newNode SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 43. Insert at the Beginning  function insertBeginning(List list, Node newNode) if list.firstNode == null list.firstNode := newNode list.lastNode := newNode newNode.prev := null newNode.next := null else insertBefore(list, list.firstNode, newNode) SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 44. Insert at the End  function insertEnd(List list, Node newNode) if list.lastNode == null insertBeginning(list, newNode) else insertAfter(list, list.lastNode, newNode) SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 45. Deletion  Deleting a node  Deletion of a node is easier than insertion, but requires special handling if the node to be removed is the firstNode or lastNode:  function remove(List list, Node node) if node.prev == null list.firstNode := node.next else node.prev.next := node.next if node.next == null list.lastNode := node.prev else node.next.prev := node.prev destroy node SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 46. Multi-lists  Multi-lists are essentially the technique of embedding multiple lists into a single data structure.  A multi-list has more than one next pointer, like a doubly linked list, but the pointers create separate lists. SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 47. Multi-lists head SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 48. Multi-lists head SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 49. Multi-lists (Not Required) head head SHEETAL WAGHMARE FROM IIT KHARAGPUR
  • 50. EXAMPLE SHEETAL WAGHMARE FROM IIT KHARAGPUR