Stack represents a last-in, first out collection of object. It is used when you need a last-in, first-out access to items. When you add an item in the list, it is called pushing the item and when you remove it, it is called popping the item.
Stack<T>.TrimExcess Method is used to set the capacity to the actual number of elements in the Queue<T>, if that number is less than 90 percent of current capacity.
A stack is an unbounded data structure and there is no method available to calculate the capacity of Stack in C#. It is dynamic and depends on the system memory. This method is generally used in memory management of the large Stack.
Stack Properties:
- The capacity of a Stack is the number of elements the Stack can hold. As elements are added to a Stack, the capacity is automatically increased as required through reallocation.
- If Count is less than the capacity of the stack, Push is an O(1) operation. If the capacity needs to be increased to accommodate the new element, Push becomes an O(n) operation, where n is Count. Pop is an O(1) operation.
- Stack accepts null as a valid value and allows duplicate elements.
Syntax:
public void TrimExcess ();
Note:
- This method can be used to minimize a collection’s memory overhead if no new elements will be added to the collection.
- To reset a Stack<T> to its initial state, call the Clear method before calling TrimExcess method.
- Trimming an empty Stack<T> sets the capacity of the Stack<T> to the default capacity.
Example:
using System;
using System.Collections.Generic;
class GFG {
public static void Main()
{
Stack< string > myStack = new Stack< string >();
myStack.Push( "1st" );
myStack.Push( "2nd" );
myStack.Push( "3rd" );
myStack.Push( "4th" );
myStack.Push( "5th" );
Console.WriteLine(myStack.Count);
myStack.Clear();
myStack.TrimExcess();
Console.WriteLine(myStack.Count);
}
}
|
Reference:
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!