Create a second copy of the queue containing three null elements at the beginning. : Queue « Data Structure « VB.Net






Create a second copy of the queue containing three null elements at the beginning.

   

Imports System
Imports System.Collections.Generic

Module Example
    Sub Main
        Dim numbers As New Queue(Of String)
        numbers.Enqueue("one")
        numbers.Enqueue("two")
        numbers.Enqueue("three")
        numbers.Enqueue("four")
        numbers.Enqueue("five")

        Dim queueCopy As New Queue(Of String)(numbers.ToArray())

        Console.WriteLine(vbLf & "Contents of the first copy:")
        For Each number As String In queueCopy
            Console.WriteLine(number)
        Next

        Dim array2((numbers.Count * 2) - 1) As String
        numbers.CopyTo(array2, numbers.Count)

        Dim queueCopy2 As New Queue(Of String)(array2)

        Console.WriteLine("Contents of the second copy, with duplicates and nulls:")
        For Each number As String In queueCopy2
            Console.WriteLine(number)
        Next

    End Sub
End Module

   
    
    
  








Related examples in the same category

1.Queue Demo: enqueue, dequeue and peekQueue Demo: enqueue, dequeue and peek
2.Queue Item CountQueue Item Count
3.Simple Demo for Queue: Enqueue, Dequeue and PeekSimple Demo for Queue: Enqueue, Dequeue and Peek
4.Creates a queue of strings with default capacity and uses the Enqueue method to queue five strings.
5.The elements of the queue are enumerated, which does not change the state of the queue.
6.The Dequeue method is used to dequeue the first string.
7.The Peek method is used to look at the next item in the queue
8.The ToArray method is used to create an array and copy the queue elements to it
9.the array is passed to the Queue<(Of <(T>)>) constructor that takes IEnumerable<(Of <(T>)>)
10.CopyTo method is used to copy the array elements beginning at the middle of the array.
11.Queue Class represents a first-in, first-out collection of objects.