-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
큐 / 스택 #28
Comments
스택 문제 응용 / leetcode
스택 문제 응용 중요!
|
Stack 두개로 Queue 만들기해커랭크 Queues: A Tale of Two Stacks Queue로 Stack 만들기leetcode 225 원형 큐
원형 Deque
|
히스토그램에서 가장 큰 직사각형구하기 (스택 )
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
원형큐 ( Circular Queue )
링크드리스트를 이용하여 큐 구현
원형큐를 이용하여 선형큐의 단점을 극복하였지만, 원형큐의 경우도 원소가 없을 때도 배열의 크기를
유지하고 있어야하므로 메모리 낭비가 있을수 있다는 단점이 있다.
The text was updated successfully, but these errors were encountered: