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:
myQueue.Count
Aquí, myQueue es el nombre de la cola.
Valor de Retorno: Esta propiedad devuelve el número de elementos contenidos en la Cola.
Ejemplo 1:
// C# code to Get the number of // elements contained in the Queue 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("Chandigarh"); myQueue.Enqueue("Delhi"); myQueue.Enqueue("Noida"); myQueue.Enqueue("Himachal"); myQueue.Enqueue("Punjab"); myQueue.Enqueue("Jammu"); // Displaying the count of elements // contained in the Queue Console.Write("Total number of elements in the Queue are : "); Console.WriteLine(myQueue.Count); } }
Producción:
Total number of elements in the Queue are : 6
Ejemplo 2:
// C# code to Get the number of // elements contained in the Queue 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>(); // Displaying the count of elements // contained in the Queue Console.Write("Total number of elements in the Queue are : "); // The function should return 0 // as the Queue is empty and it // doesn't contain any element Console.WriteLine(myQueue.Count); } }
Producción:
Total number of elements in the Queue are : 0
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