La cola representa una colección de objetos de tipo primero en entrar, primero en salir . Se utiliza cuando necesita un acceso de elementos por orden de entrada. Cuando agrega un elemento en la lista, se llama enqueue , y cuando elimina un elemento, se llama deque . Cola
Propiedades :
- Enqueue agrega un elemento al final de la cola.
- Dequeue elimina el elemento más antiguo del inicio de la cola.
- Peek devuelve el elemento más antiguo que está al comienzo de la Cola pero no lo elimina de la Cola.
- La capacidad de una Cola es el número de elementos que la Cola puede contener.
- A medida que se agregan elementos a una cola, la capacidad aumenta automáticamente según sea necesario mediante la reasignación de la array interna.
- Queue acepta nulo como un valor válido para los tipos de referencia y permite elementos duplicados.
Sintaxis:
public T[] ToArray ();
Aquí T[] es una nueva array que contiene elementos copiados de Queue .
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# code to Create a Queue // from a collection using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a Queue of strings Queue<string> myQueue1 = new Queue<string>(); // Inserting the elements into the Queue myQueue1.Enqueue("GeeksforGeeks"); myQueue1.Enqueue("is"); myQueue1.Enqueue("the"); myQueue1.Enqueue("best"); myQueue1.Enqueue("website"); // Displaying the count of elements // contained in the myQueue1 Console.Write("Total number of elements in the Queue 1 are : "); Console.WriteLine(myQueue1.Count); // Displaying the elements in Queue myQueue1 foreach(string str in myQueue1) { Console.WriteLine(str); } // Creating a Queue from a collection Queue<string> myQueue2 = new Queue<string>(myQueue1.ToArray()); // Displaying the count of elements // contained in the myQueue2 Console.Write("Total number of elements in the Queue 2 are : "); Console.WriteLine(myQueue2.Count); // Displaying the elements in Queue myQueue2 foreach(string str in myQueue2) { Console.WriteLine(str); } } }
Producción:
Total number of elements in the Queue 1 are : 5 GeeksforGeeks is the best website Total number of elements in the Queue 2 are : 5 GeeksforGeeks is the best website
Ejemplo 2:
// C# code to Create a Queue // from a collection using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a Queue of Integers Queue<int> myQueue1 = new Queue<int>(); // Inserting the elements into the Queue myQueue1.Enqueue(5); myQueue1.Enqueue(10); myQueue1.Enqueue(15); myQueue1.Enqueue(20); myQueue1.Enqueue(25); // Displaying the count of elements // contained in the myQueue1 Console.Write("Total number of elements in the Queue 1 are : "); Console.WriteLine(myQueue1.Count); // Displaying the elements in Queue myQueue1 foreach(int i in myQueue1) { Console.WriteLine(i); } // Creating a Queue from a collection Queue<int> myQueue2 = new Queue<int>(myQueue1.ToArray()); // Displaying the count of elements // contained in the myQueue2 Console.Write("Total number of elements in the Queue 2 are : "); Console.WriteLine(myQueue2.Count); // Displaying the elements in Queue myQueue2 foreach(int i in myQueue2) { Console.WriteLine(i); } } }
Producción:
Total number of elements in the Queue 1 are : 5 5 10 15 20 25 Total number of elements in the Queue 2 are : 5 5 10 15 20 25
Referencia:
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA