C# | Check if an element is in the Queue (original) (raw)

Last Updated : 01 Feb, 2019

Queue represents a first-in, first out collection of object. It is used when you need a first-in, first-out access of items. When you add an item in the list, it is called enqueue, and when you remove an item, it is called deque. Queue.Contains(T) Method is used to check whether an element is in the Queue

.Properties:

public virtual bool Contains(object obj);

Return Value: The function returns True if the element exists in the Queue and returns False if the element doesn't exist in the Queue. Below given are some examples to understand the implementation in a better way:Example 1: CSHARP `

// C# code to Check if a Queue // contains an element using System; using System.Collections.Generic;

class GFG {

// Driver code
public static void Main()
{

    // Creating a Queue of Integers
    Queue<int> myQueue = new Queue<int>();

    // Inserting the elements into the Queue
    myQueue.Enqueue(5);
    myQueue.Enqueue(10);
    myQueue.Enqueue(15);
    myQueue.Enqueue(20);
    myQueue.Enqueue(25);

    // Checking whether the element is
    // present in the Queue or not
    // The function returns True if the
    // element is present in the Queue, else
    // returns False
    Console.WriteLine(myQueue.Contains(7));
}

}

**Example 2:** CSHARP

// C# code to Check if a Queue // contains an element using System; using System.Collections.Generic;

class GFG {

// Driver code
public static void Main()
{

    // Creating a Queue of strings
    Queue<string> myQueue = new Queue<string>();

    // Inserting the elements into the Queue
    myQueue.Enqueue("Geeks");
    myQueue.Enqueue("Geeks Classes");
    myQueue.Enqueue("Noida");
    myQueue.Enqueue("Data Structures");
    myQueue.Enqueue("GeeksforGeeks");

    // Checking whether the element is
    // present in the Queue or not
    // The function returns True if the
    // element is present in the Queue, else
    // returns False
    Console.WriteLine(myQueue.Contains("GeeksforGeeks"));
}

}

` Reference:

Similar Reads