SlideShare una empresa de Scribd logo
1 de 33
PRESENTED BY:
AKSHAY WADALKAR
   An array is a collection of elements of similar
    datatype.

   Contiguous memory allocation takes place.

   An array is a DS in which we can access every
    element directly using position variable .

   It is rather an organizational concept.

   Array elements can be accessed individually.

   Syntax: datatype nameofarray [dimension];
 Two types of array-
1. Single dimensional




      single for loop.
2.   Multidimensional




      nesting of for loop.
   Array can be of integer ,character and string.

   Integer and character array can be
    implemented by same logic

   Implementation of string array is quiet
    different from the two.

   We can study the array implementation using
    integer array.
Creation of integer array
                 int
 7   a[0] i=0     a[10]={7,1,32,58,0,5,8,16,9,23}
14   a[1] i=1     ;

32   a[2] i=2    Integer array “a”.
58   a[3] i=3
                    It is of dimension 10 (from 0
 0   a[4] i=4       to 9).
 5   a[5] i=5      Take positing variable i.
 8   a[6] i=6
                   Its storage will be continuous
16   a[7] i=7       20 bytes(2 bytes each).
 9   a[8] i=8
23   a[9] i=9
1.   DECLARATION
     N     SIZE
2.   OPERATION
     Repeat for i= 0 to (size-1)
     arr[i]= num
     end repeat
3.   OUTPUT
     RETURN(arr[i])
 DECLARATION
i   rows
j   coloumn
 OPERATION
    ◦ Repeat for i=0 to (rows-1)
      Repeat for j=0 to (coloumn-1)
        Array[i][j]=num
      End repeat
    ◦ End repeat
   OUTPUT
    Return(Array[i][j])
   No need to declare large number of variables
    individually.

   Variables are not scattered in memory , they
    are stored in contiguous memory.

   Ease the handling of large no of variables of
    same datatype.
   Rigid structure.

   Can be hard to add/remove elements.

   Cannot be dynamically resized in most
    languages.

   Memory loss.
AS A DATA STRUCTURE
   Each element (node) inside a linked list is
    linked to the previous node and successor
    (next) node.
   This allows for more efficient insertion and
    deletion of nodes.



                5     3     14    2




                                             continued
   Each item has a data part (one or more data
    members), and a link that points to the next item.

   One natural way to implement the link is as a
    pointer; that is, the link is the address of the next
    item in the list.

   It makes good sense to view each item as an object,
    that is, as an instance of a class.

   We call that class: Node

   The last item does not point to anything. We set its
    link member to NULL. This is denoted graphically by
    a self-loop
   Insert a new item
    ◦ At the head of the list, or
    ◦ At the tail of the list, or
    ◦ Inside the list, in some designated position
   Search for an item in the list
    ◦ The item can be specified by position, or by some
      value
   Delete an item from the list
    ◦ Search for and locate the item, then remove the
      item, and finally adjust the surrounding pointers
   Suppose you want to find the item whose data
    value is A

   You have to search sequentially starting from the
    head item rightward until the first item whose data
    member is equal to A is found.

   At each item searched, a comparison between the
    data member and A is performed.
LOGIC FOR SEARCHING A LINKED
              LIST

•Since nodes in a linked list have no names, we use two
pointers, pre (for previous) and cur (for current).

•At the beginning of the search, the pre pointer is null and
the cur pointer points to the first node.

•The search algorithm moves the two pointers together
towards the end of the list.
   Declaration
    ◦ Current     0
   Searching
    ◦ for (current = first; current != NULL; current =
      current->next)
    ◦ if (searchItem == current(data))
    ◦ return (current);
    ◦ Break
   Output
    ◦ return (NULL);
Insertion of an Element at the
Head :
  Before the insertion:

       head


                  next              next             next


    element       element           element
           Rome           Seattle          Toronto
Have a new node:

                    head

               next           next             next             next


  element       element       element          element
        Baltimore      Rome          Seattle          Toronto




  Node x = new Node();
  x.setElement(new String(“Baltimore”));
  The following statement is not correct:
  x.element = new String(“Baltimore”));
After the insertion:

     head

                 next          next             next             next


  element        element       element          element
         Baltimore      Rome          Seattle          Toronto




     x.setNext(head);
     head = x;
Deleting an Element at the
Head :
Before the deletion:

     head

                next          next             next             next


  element        element      element          element
         Baltimore     Rome          Seattle          Toronto
Remove the node from the list:

                     head

                next           next             next             next


  element        element       element          element
         Baltimore      Rome          Seattle          Toronto



     head = head.getNext();
After the deletion:

     head

                next             next             next


  element       element          element
         Rome          Seattle          Toronto
Insertion of an Element at the
Tail :
Before the insertion:

     head                                tail


                next              next             next


  element       element           element
         Rome           Seattle          Toronto
Have a new node:

    head                              tail


              next             next             next           next


  element     element          element            element
       Rome          Seattle          Toronto           Baltimore


    Node x = new Node( );
    x.setElement(new String(“Baltimore”));
    x.setNext(null);
    tail.setNext(x);
    tail = x;
After the insertion:

     head                                          tail

                next             next             next           next


   element      element          element      element
         Rome          Seattle          Toronto           Baltimore
Deleting an Element at the
Tail :
Deletion of an element at the tail of a singly linked list takes
more effort.

The difficulty is related with the fact that the last node does not
have a link to the previous node which will become the new
tail of the list.
Before the deletion:

     head                                          tail

                next             next             next           next


  element       element          element      element
         Rome          Seattle          Toronto           Baltimore
Remove the node: How can we find the new tail?

    head                                                tail ?

               next             next             next              next


  element      element          element            element
        Rome          Seattle          Toronto              Baltimore




                                                    should be removed
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.
Advantages of linked lists
   Linked lists are dynamic, they can grow or
    shrink as necessary

   Linked lists are non-contiguous; the logical
    sequence of items in the structure is
    decoupled from any physical ordering in
    memory




CS314                   Linked Lists               31
Applications of linked lists

•A linked list is a very efficient data structure for sorted list
that will go through many insertions and deletions.

•A linked list is a dynamic data structure in which the list
can start with no nodes and then grow as new nodes are
needed. A node can be easily deleted without moving other
nodes, as would be the case with an array.

•For example, a linked list could be used to hold the
records of students in a school. Each quarter or semester,
new students enroll in the school and some students leave
or graduate.
Array implementation and linked list as datat structure

Más contenido relacionado

La actualidad más candente

header, circular and two way linked lists
header, circular and two way linked listsheader, circular and two way linked lists
header, circular and two way linked lists
student
 

La actualidad más candente (20)

Doubly Linked List
Doubly Linked ListDoubly Linked List
Doubly Linked List
 
Singly link list
Singly link listSingly link list
Singly link list
 
Arrays in Data Structure and Algorithm
Arrays in Data Structure and Algorithm Arrays in Data Structure and Algorithm
Arrays in Data Structure and Algorithm
 
Linked List - Insertion & Deletion
Linked List - Insertion & DeletionLinked List - Insertion & Deletion
Linked List - Insertion & Deletion
 
Queue data structure
Queue data structureQueue data structure
Queue data structure
 
Linked list
Linked listLinked list
Linked list
 
Data Structures - Lecture 8 [Sorting Algorithms]
Data Structures - Lecture 8 [Sorting Algorithms]Data Structures - Lecture 8 [Sorting Algorithms]
Data Structures - Lecture 8 [Sorting Algorithms]
 
1.5 binary search tree
1.5 binary search tree1.5 binary search tree
1.5 binary search tree
 
Data Structures - Lecture 7 [Linked List]
Data Structures - Lecture 7 [Linked List]Data Structures - Lecture 7 [Linked List]
Data Structures - Lecture 7 [Linked List]
 
Huffman's algorithm in Data Structure
 Huffman's algorithm in Data Structure Huffman's algorithm in Data Structure
Huffman's algorithm in Data Structure
 
Data Structure (Queue)
Data Structure (Queue)Data Structure (Queue)
Data Structure (Queue)
 
header, circular and two way linked lists
header, circular and two way linked listsheader, circular and two way linked lists
header, circular and two way linked lists
 
Circular link list.ppt
Circular link list.pptCircular link list.ppt
Circular link list.ppt
 
Stack
StackStack
Stack
 
Linked list
Linked listLinked list
Linked list
 
Arrays
ArraysArrays
Arrays
 
Link list
Link listLink list
Link list
 
queue & its applications
queue & its applicationsqueue & its applications
queue & its applications
 
Quick Sort
Quick SortQuick Sort
Quick Sort
 
Searching algorithm
Searching algorithmSearching algorithm
Searching algorithm
 

Destacado

Destacado (18)

Searching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data StructureSearching and Sorting Techniques in Data Structure
Searching and Sorting Techniques in Data Structure
 
Double linked list
Double linked listDouble linked list
Double linked list
 
Individual-In-The-Loop (for Ethically Aligned Artificial Intelligence)
Individual-In-The-Loop (for Ethically Aligned Artificial Intelligence)Individual-In-The-Loop (for Ethically Aligned Artificial Intelligence)
Individual-In-The-Loop (for Ethically Aligned Artificial Intelligence)
 
Insertion and Deletion in Binary Search Trees (using Arrays and Linked Lists)
Insertion and Deletion in Binary Search Trees (using Arrays and Linked Lists)Insertion and Deletion in Binary Search Trees (using Arrays and Linked Lists)
Insertion and Deletion in Binary Search Trees (using Arrays and Linked Lists)
 
Cyber Crime
Cyber CrimeCyber Crime
Cyber Crime
 
Linked list
Linked listLinked list
Linked list
 
6. Linked list - Data Structures using C++ by Varsha Patil
6. Linked list - Data Structures using C++ by Varsha Patil6. Linked list - Data Structures using C++ by Varsha Patil
6. Linked list - Data Structures using C++ by Varsha Patil
 
Data structure using c module 1
Data structure using c module 1Data structure using c module 1
Data structure using c module 1
 
Linked List, Types of Linked LIst, Various Operations, Applications of Linked...
Linked List, Types of Linked LIst, Various Operations, Applications of Linked...Linked List, Types of Linked LIst, Various Operations, Applications of Linked...
Linked List, Types of Linked LIst, Various Operations, Applications of Linked...
 
7 Myths of AI
7 Myths of AI7 Myths of AI
7 Myths of AI
 
linked list
linked list linked list
linked list
 
Trees data structure
Trees data structureTrees data structure
Trees data structure
 
358 33 powerpoint-slides_8-linked-lists_chapter-8
358 33 powerpoint-slides_8-linked-lists_chapter-8358 33 powerpoint-slides_8-linked-lists_chapter-8
358 33 powerpoint-slides_8-linked-lists_chapter-8
 
Doubly linked list
Doubly linked listDoubly linked list
Doubly linked list
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search Tree
 
Open Legal Data Workshop at Stanford
Open Legal Data Workshop at StanfordOpen Legal Data Workshop at Stanford
Open Legal Data Workshop at Stanford
 
Harry Surden - Artificial Intelligence and Law Overview
Harry Surden - Artificial Intelligence and Law OverviewHarry Surden - Artificial Intelligence and Law Overview
Harry Surden - Artificial Intelligence and Law Overview
 
AI and Machine Learning Demystified by Carol Smith at Midwest UX 2017
AI and Machine Learning Demystified by Carol Smith at Midwest UX 2017AI and Machine Learning Demystified by Carol Smith at Midwest UX 2017
AI and Machine Learning Demystified by Carol Smith at Midwest UX 2017
 

Similar a Array implementation and linked list as datat structure

Fundamentals of data structures
Fundamentals of data structuresFundamentals of data structures
Fundamentals of data structures
Niraj Agarwal
 
DS Complete notes for Computer science and Engineering
DS Complete notes for Computer science and EngineeringDS Complete notes for Computer science and Engineering
DS Complete notes for Computer science and Engineering
RAJASEKHARV8
 

Similar a Array implementation and linked list as datat structure (20)

Unit i(dsc++)
Unit i(dsc++)Unit i(dsc++)
Unit i(dsc++)
 
singly link list project in dsa.....by rohit malav
singly link list project in dsa.....by rohit malavsingly link list project in dsa.....by rohit malav
singly link list project in dsa.....by rohit malav
 
03_LinkedLists_091.ppt
03_LinkedLists_091.ppt03_LinkedLists_091.ppt
03_LinkedLists_091.ppt
 
1.ppt
1.ppt1.ppt
1.ppt
 
Fundamentals of data structures
Fundamentals of data structuresFundamentals of data structures
Fundamentals of data structures
 
Sorting & Linked Lists
Sorting & Linked ListsSorting & Linked Lists
Sorting & Linked Lists
 
Chapter 5 ds
Chapter 5 dsChapter 5 ds
Chapter 5 ds
 
Lec3
Lec3Lec3
Lec3
 
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
 
Linked list1.ppt
Linked list1.pptLinked list1.ppt
Linked list1.ppt
 
Funddamentals of data structures
Funddamentals of data structuresFunddamentals of data structures
Funddamentals of data structures
 
Lec3
Lec3Lec3
Lec3
 
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
 
Data structures
Data structuresData structures
Data structures
 
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
 
1 list datastructures
1 list datastructures1 list datastructures
1 list datastructures
 
Lect-1.pptx
Lect-1.pptxLect-1.pptx
Lect-1.pptx
 
Data structures
Data structuresData structures
Data structures
 
intr_ds.ppt
intr_ds.pptintr_ds.ppt
intr_ds.ppt
 
DS Complete notes for Computer science and Engineering
DS Complete notes for Computer science and EngineeringDS Complete notes for Computer science and Engineering
DS Complete notes for Computer science and Engineering
 

Más de Tushar Aneyrao (7)

Varaiational formulation fem
Varaiational formulation fem Varaiational formulation fem
Varaiational formulation fem
 
General purpose simulation System (GPSS)
General purpose simulation System (GPSS)General purpose simulation System (GPSS)
General purpose simulation System (GPSS)
 
Safety of vehicles
Safety of vehiclesSafety of vehicles
Safety of vehicles
 
Seminar on cim 02
Seminar on cim 02Seminar on cim 02
Seminar on cim 02
 
Presentation on robotics
Presentation on roboticsPresentation on robotics
Presentation on robotics
 
Seminar o nm aterial enginering
Seminar o nm aterial engineringSeminar o nm aterial enginering
Seminar o nm aterial enginering
 
Seminar on fatigue
Seminar on fatigueSeminar on fatigue
Seminar on fatigue
 

Último

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 

Array implementation and linked list as datat structure

  • 2. An array is a collection of elements of similar datatype.  Contiguous memory allocation takes place.  An array is a DS in which we can access every element directly using position variable .  It is rather an organizational concept.  Array elements can be accessed individually.  Syntax: datatype nameofarray [dimension];
  • 3.  Two types of array- 1. Single dimensional single for loop. 2. Multidimensional nesting of for loop.
  • 4. Array can be of integer ,character and string.  Integer and character array can be implemented by same logic  Implementation of string array is quiet different from the two.  We can study the array implementation using integer array.
  • 5. Creation of integer array  int 7 a[0] i=0 a[10]={7,1,32,58,0,5,8,16,9,23} 14 a[1] i=1 ; 32 a[2] i=2  Integer array “a”. 58 a[3] i=3  It is of dimension 10 (from 0 0 a[4] i=4 to 9). 5 a[5] i=5  Take positing variable i. 8 a[6] i=6  Its storage will be continuous 16 a[7] i=7 20 bytes(2 bytes each). 9 a[8] i=8 23 a[9] i=9
  • 6. 1. DECLARATION N SIZE 2. OPERATION Repeat for i= 0 to (size-1) arr[i]= num end repeat 3. OUTPUT RETURN(arr[i])
  • 7.  DECLARATION i rows j coloumn  OPERATION ◦ Repeat for i=0 to (rows-1)  Repeat for j=0 to (coloumn-1)  Array[i][j]=num  End repeat ◦ End repeat  OUTPUT Return(Array[i][j])
  • 8. No need to declare large number of variables individually.  Variables are not scattered in memory , they are stored in contiguous memory.  Ease the handling of large no of variables of same datatype.
  • 9. Rigid structure.  Can be hard to add/remove elements.  Cannot be dynamically resized in most languages.  Memory loss.
  • 10. AS A DATA STRUCTURE
  • 11. Each element (node) inside a linked list is linked to the previous node and successor (next) node.  This allows for more efficient insertion and deletion of nodes. 5 3 14 2 continued
  • 12. Each item has a data part (one or more data members), and a link that points to the next item.  One natural way to implement the link is as a pointer; that is, the link is the address of the next item in the list.  It makes good sense to view each item as an object, that is, as an instance of a class.  We call that class: Node  The last item does not point to anything. We set its link member to NULL. This is denoted graphically by a self-loop
  • 13. Insert a new item ◦ At the head of the list, or ◦ At the tail of the list, or ◦ Inside the list, in some designated position  Search for an item in the list ◦ The item can be specified by position, or by some value  Delete an item from the list ◦ Search for and locate the item, then remove the item, and finally adjust the surrounding pointers
  • 14. Suppose you want to find the item whose data value is A  You have to search sequentially starting from the head item rightward until the first item whose data member is equal to A is found.  At each item searched, a comparison between the data member and A is performed.
  • 15. LOGIC FOR SEARCHING A LINKED LIST •Since nodes in a linked list have no names, we use two pointers, pre (for previous) and cur (for current). •At the beginning of the search, the pre pointer is null and the cur pointer points to the first node. •The search algorithm moves the two pointers together towards the end of the list.
  • 16. Declaration ◦ Current 0  Searching ◦ for (current = first; current != NULL; current = current->next) ◦ if (searchItem == current(data)) ◦ return (current); ◦ Break  Output ◦ return (NULL);
  • 17.
  • 18. Insertion of an Element at the Head : Before the insertion: head next next next element element element Rome Seattle Toronto
  • 19. Have a new node: head next next next next element element element element Baltimore Rome Seattle Toronto Node x = new Node(); x.setElement(new String(“Baltimore”)); The following statement is not correct: x.element = new String(“Baltimore”));
  • 20. After the insertion: head next next next next element element element element Baltimore Rome Seattle Toronto x.setNext(head); head = x;
  • 21. Deleting an Element at the Head : Before the deletion: head next next next next element element element element Baltimore Rome Seattle Toronto
  • 22. Remove the node from the list: head next next next next element element element element Baltimore Rome Seattle Toronto head = head.getNext();
  • 23. After the deletion: head next next next element element element Rome Seattle Toronto
  • 24. Insertion of an Element at the Tail : Before the insertion: head tail next next next element element element Rome Seattle Toronto
  • 25. Have a new node: head tail next next next next element element element element Rome Seattle Toronto Baltimore Node x = new Node( ); x.setElement(new String(“Baltimore”)); x.setNext(null); tail.setNext(x); tail = x;
  • 26. After the insertion: head tail next next next next element element element element Rome Seattle Toronto Baltimore
  • 27. Deleting an Element at the Tail : Deletion of an element at the tail of a singly linked list takes more effort. The difficulty is related with the fact that the last node does not have a link to the previous node which will become the new tail of the list.
  • 28. Before the deletion: head tail next next next next element element element element Rome Seattle Toronto Baltimore
  • 29. Remove the node: How can we find the new tail? head tail ? next next next next element element element element Rome Seattle Toronto Baltimore should be removed
  • 30. 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.
  • 31. Advantages of linked lists  Linked lists are dynamic, they can grow or shrink as necessary  Linked lists are non-contiguous; the logical sequence of items in the structure is decoupled from any physical ordering in memory CS314 Linked Lists 31
  • 32. Applications of linked lists •A linked list is a very efficient data structure for sorted list that will go through many insertions and deletions. •A linked list is a dynamic data structure in which the list can start with no nodes and then grow as new nodes are needed. A node can be easily deleted without moving other nodes, as would be the case with an array. •For example, a linked list could be used to hold the records of students in a school. Each quarter or semester, new students enroll in the school and some students leave or graduate.