Data Structures & Algorithms in Java: Doubly & Circular Linked Lists


Overview/Description
Expected Duration
Lesson Objectives
Course Number
Expertise Level



Overview/Description

Discover how to implement the linked list in Java, including the doubly linked list and the circular linked list, and learn how to perform operations on these linked lists. In this course, you’ll explore variations on the singly linked list that you covered earlier. You’ll see how the doubly linked list holds an additional reference to the previous node in the linked list along with a reference to the next node. This means additional space is required to store each node, but it also makes certain operations faster, such as traversing backwards over the elements in the linked list. You'll also learn about the circular linked list, where the tail of the linked list points back to the head of the linked list.



Expected Duration (hours)
0.7

Lesson Objectives

Data Structures & Algorithms in Java: Doubly & Circular Linked Lists

  • discover the key concepts covered in this course
  • insert a new node at the head and tail of a doubly linked list
  • insert a new node at any index position in a doubly linked list
  • delete a node from a doubly linked list
  • traverse a doubly linked list from the last element to the first
  • insert a new node in a circular linked list
  • count nodes and delete nodes in a circular linked list
  • summarize the key concepts covered in this course
  • Course Number:
    it_jddsajdj_03_enus

    Expertise Level
    Intermediate