About 182,000 results
Open links in new tab
  1. Queue in C++ STL - GeeksforGeeks

    Mar 3, 2025 · A Queue is a linear structure that follows a particular order in which the operations are performed. The order is First In First Out (FIFO). Syntax: queue<datatype> queuename;Datatype: Queue can take any data type depending on the values, e.g. int, char, float, etc. The std: :queue container d

  2. C++ Queue (With Examples) - Programiz

    The C++ STL queue provides the functionality of a queue data structure. In this tutorial, you will learn about the C++ queue and its various operations in C++ with the help of examples.

  3. C++ Program to Implement Queue using Array - GeeksforGeeks

    May 14, 2024 · We can represent a queue using a class that contains: An array to store the data. Front and back index pointer. Constructor to initialize the queue. Member functions that provide enqueue and dequeue operations.

  4. C++ Queues - W3Schools

    C++ Queue. A queue stores multiple elements in a specific order, called FIFO. FIFO stands for First in, First Out. To visualize FIFO, think of a queue as people standing in line in a supermarket. The first person to stand in line is also the first who can pay and leave the supermarket.

  5. C++ Program to Implement Queue using Linked List

    May 27, 2024 · In this article, we will learn how to implement queue in C++ using a linked list. The queue can implemented using the linked list which consists of the nodes where the each node contains the two parts: Data: The value or the data can be stored in the node. Next: The pointer to the next node in queue. The queue itself maintains the two pointers:

  6. std::queue - cppreference.com

    Aug 2, 2024 · The std::queue class template is a container adaptor that gives the functionality of a queue - specifically, a FIFO (first-in, first-out) data structure. The class template acts as a wrapper to the underlying container - only a specific set of functions is provided.

  7. C++ Program to Implement Queue Using Array - Online …

    Queue implements the FIFO mechanism i.e., the element that is inserted first is also deleted first. In other words, the least recently added element is removed first in a queue. A program that implements the queue using an array is given as follows ? cout<<"Queue Overflow"<<endl; else { if (front == - 1) . front = 0; .

  8. Mastering C++ std::queue in Minutes: A Quick Guide

    The `std::queue` in C++ is a container adapter that provides a First-In-First-Out (FIFO) data structure, allowing efficient addition and removal of elements from the front and back. Here's a code snippet demonstrating its basic usage: std::queue<int> q; // Adding elements to the queue . q. push (10); q. push (20); q. push (30);

  9. Queue in C++ (All Methods With Examples) - wscubetech.com

    3 days ago · This guide covers syntax, key methods, how to create a queue, add elements, and more with clear examples. Understand queues in C++ from scratch. Explore Courses

  10. C++ Queue Exercises: Implement a queue using an array

    Apr 14, 2025 · Write a C++ program to implement a queue using an array with enqueue and dequeue operations. Find the top element of the stack and check if the stack is empty, full or not. Note: Putting items in the queue is called enqueue, and removing items from the queue is called dequeue. Sample Solution: C Code: