About 2,500 results
Open links in new tab

Got it, one moment

...
Feedback
AI generated code. Review and use carefully. More info on FAQ.
  1. Queue - Linked List Implementation - GeeksforGeeks

    Sep 20, 2025 · A Queue is a linear data structure that follows the First-In-First-Out (FIFO) principle. The element inserted first is the first one to be …

  2. Queue Implementation using a Linked List – C, …

    Sep 18, 2025 · This article covers queue implementation using a linked list. A queue is a linear data structure that serves as a collection of elements, …

  3. Queue implementation using linked list, enqueue and dequeue in C

    Nov 8, 2015 · Here, I will explain how to implement a basic queue using linked list in C programming. Along with I will explain how to perform enqueue and dequeue operations on …

  4. Implementing a Queue Using a Linked List - HappyCoders.eu

    • The following code shows the implementation of a queue with a linked list (LinkedListQueue in the GitHub repo). The class for the nodes, Node, can be found at the very end as a static inner class. You can see how to use the LinkedListQueue class in the QueueDemoprogram.
    See more on happycoders.eu
    • 5/5
      (13)
    • Published: May 16, 2022
  5. DSA Queues - W3Schools

    Queues can be implemented by using arrays or linked lists. Queues can be used to implement job scheduling for an office printer, order processing for e-tickets, or to create algorithms for …

  6. Queue Implementation Using Linked List | Visualize Queue in JS, C ...

    Explore Queue implementation using Linked List with real-time visualizations and code examples in JavaScript, C, Python, and Java. Understand how Enqueue and Dequeue work in a dynamic …

  7. Queue Implementation using Linked List in C++ - Simplerize

    Jan 30, 2023 · Implementation of queue using linked list in C++. This includes enqueue () and dequeue () operations explained with algorithms and examples.

  8. Queue Using Linked List in C: Implementation of …

    Learn how to implement a queue using a linked list in C. Explore enqueue, dequeue operations, and why linked lists are better than arrays for queues.

  9. Queue using Linked List in C - GeeksforGeeks

    Oct 22, 2025 · Following is the algorithm for the enqueue function: Create a new node with the given data. If the queue is empty, set the front and rear …

  10. 5.2 Queue - Hello Algo

    Below is the code for implementing a queue using a linked list: 2. Array Implementation. Deleting the first element in an array has a time …