blob: c02bf4584792d7c5b777751cc6e14a4a5211e8c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Learning Profile for Assignment #1 - Question #6 - Computer Science 272: Data Structures and Algorithms
Name: Mo Khan
Student ID: 3431709
## Problem Statement
Design and implement a MinStack data structure that can store comparable elements and supports the stack operations `push(x)`, `pop()`, and `size()`,
as well as the `min()` operation, which returns the minimum value currently stored in the data structure.
All operations should run in constant time.
## Description of the Code
## Errors and Warnings
## Sample Input and Output
## Discussion
|