[Stack] Min Stack
2021. 2. 9. 23:13ㆍ프로그래밍-코딩테스트/LeetCode
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
- push(x) -- Push element x onto stack.
- pop() -- Removes the element on top of the stack.
- top() -- Get the top element.
- getMin() -- Retrieve the minimum element in the stack.
stack을 구현하는 전형적인 문제다
자바스크립트로 구현하는 prototype 메소드는 this를 이용한다.
'프로그래밍-코딩테스트 > LeetCode' 카테고리의 다른 글
[정리] Top 100 Liked Questions - Easy (1) (0) | 2021.03.10 |
---|---|
[Tree] Symmetric Tree (0) | 2021.02.09 |
[Linked List] Intersection of Two Linked Lists (0) | 2021.02.09 |
[Linked List] Linked List Cycle (0) | 2021.02.09 |
[Linked List] Palindrome Linked List (0) | 2021.02.09 |