짱아의 개발 기록장

스택으로 큐 구현하기(c++) 본문

CS(Computer Science)

스택으로 큐 구현하기(c++)

jungahshin 2020. 8. 3. 14:10
반응형

오늘은 스택으로 큐를 구현해보려고 합니다.

총 2개의 스택을 사용하여 큐를 구현할 수 있습니다.

push, pop, isEmpty함수를 구현했습니다.

 

저는 이해를 위해 다음 블로그를 참조하였고 따로 c++로 코드를 작성해보았습니다.

https://tdm1223.tistory.com/44

 

스택으로 큐 구현하기 / 큐로 스택 구현하기

면접 보면서 정말 많이 받은 질문 중 하나이다. 처음 질문받았을 때 어버버 하면서 아무것도 대답 못했던 기억이 있고 두 번째 받았을 땐 자신 있게 작성하다 틀린 기억이 있는 부끄러운 기억이

tdm1223.tistory.com

 

코드 첨부

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// 스택 2개를 사용해서 큐를 구현하시오. (push, pop, empty 함수 구현)
#include <iostream>
#include <stack>
using namespace std;
 
int n, num;
string s;
stack<int> s1;
stack<int> s2;
 
void push(int data){
    s1.push(data);
}
 
bool isEmpty(){
    if(s1.empty()){
        return true;
    }
 
    return false;
}
 
int pop(){
    if(isEmpty()){
        cout<<"stack underflow"<<"\n";
        return 0;
    }
 
    while(!s1.empty()){
        s2.push(s1.top());
        s1.pop();
    }
 
    int num = s2.top();
    s2.pop();
 
    while(!s2.empty()){
        s1.push(s2.top());
        s2.pop();
    }
 
    return num;
}
 
int main()
{
    cin>>n;
    for(int i=0; i<n; i++){
        cin>>s;
        if(s=="pop"){
            cout<<pop()<<"\n";
        }else if(s=="push"){
            cin>>num;
            push(num);
        }else if(s=="empty"){
            cout<<isEmpty()<<"\n";
        }
    }
 
    return 0;
}
cs
반응형

'CS(Computer Science)' 카테고리의 다른 글

선택 정렬(selection sort) 구현하기(c++)  (0) 2020.08.10
버블 정렬(bubble sort) 구현하기(c++)  (0) 2020.08.10
큐 구현하기(c++)  (0) 2020.08.03
스택 구현하기(c++)  (0) 2020.08.03
큐로 스택 구현하기(c++)  (0) 2020.08.03
Comments