Este método (viene bajo el espacio de nombres System.Collections ) se usa para insertar un objeto en la parte superior de la pila. Si Count ya es igual a la capacidad, la capacidad de Stack aumenta al reasignar automáticamente la array interna y los elementos existentes se copian en la nueva array antes de agregar el nuevo elemento. Si Count es menor que la capacidad de la pila, Push es una operación O(1). Si es necesario aumentar la capacidad para acomodar el nuevo elemento, Push se convierte en una operación O(n), donde n es Count.
Sintaxis:
public virtual void Push (object obj);
Ejemplo:
// C# code to demonstrate the // Stack.Push() Method using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Stack Stack myStack = new Stack(); // Inserting the elements into the Stack myStack.Push("one"); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements "+ "in the Stack are : "); Console.WriteLine(myStack.Count); myStack.Push("two"); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements"+ " in the Stack are : "); Console.WriteLine(myStack.Count); myStack.Push("three"); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements"+ " in the Stack are : "); Console.WriteLine(myStack.Count); myStack.Push("four"); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements"+ " in the Stack are : "); Console.WriteLine(myStack.Count); myStack.Push("five"); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements"+ " in the Stack are : "); Console.WriteLine(myStack.Count); myStack.Push("six"); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements"+ " in the Stack are : "); Console.WriteLine(myStack.Count); } }
Producción:
Total number of elements in the Stack are : 1 Total number of elements in the Stack are : 2 Total number of elements in the Stack are : 3 Total number of elements in the Stack are : 4 Total number of elements in the Stack are : 5 Total number of elements in the Stack are : 6
Referencia:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA