This is a simple C# console application that demonstrates two fundamental data structures: Stack (LIFO) and Queue (FIFO). The program provides an interactive menu system where users can perform basic operations on each data structure.
πΉ Stack (LIFO)
-Push β Insert element at the top
-Pop β Remove element from the top
-Peek β View the top element without removing it
-Display β Show all elements in the stack
πΉ Queue (FIFO)
-Enqueue β Insert element at the rear
-Dequeue β Remove element from the front
-Peek β View the front element without removing it
-Display β Show all elements in the queue