Tag: linkedlist

  • Java Queue

    Java Queue

    A Java Queue is a FIFO(First-In-First-Out) data structure which means that the oldest item will be the first item that we will be able to remove from the queue

  • Java LinkedList

    Java LinkedList

    In this article, we are going to go through everything you need to know to use Java LinkedList appropriately and what happens behind the curtains when we use it. We will cover both its practical and theoretical use. 1. What is a LinkedList? In Java, a LinkedList is a doubly linked list, and it is…