짱아의 개발 기록장

백준 10845번. 큐(c++) / Queue 본문

Algorithm/Baekjoon

백준 10845번. 큐(c++) / Queue

jungahshin 2020. 8. 4. 14:32
반응형

본인은 c++의 큐 라이브러리를 사용하지 않고 직접 구현하여 문제를 풀었다.

 

 

코드 첨부

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
62
63
64
65
66
67
68
69
70
71
// 큐
#include <iostream>
using namespace std;
 
int queue[10001= {0, };
int front = -1, rear = -1;
int n, m;
string s;
 
void insert(int data)
{
    if(front==-1){
        front = 0;
    }
    queue[++rear] = data;
}
 
void del()
{
    cout<<queue[front]<<"\n";
    front++;
}
 
void empty()
{
    if(front==-1 || front>rear){
        cout<<"1"<<"\n";
    }else{
        cout<<"0"<<"\n";
    }
}
 
int main()
{
    cin>>n;
    for(int i=0; i<n; i++){
        cin>>s;
        if(s=="push"){
            cin>>m;
            insert(m);
        }else if(s=="front"){
            if(front==-1 || front>rear){
                cout<<"-1"<<"\n";
            }else{
                cout<<queue[front]<<"\n";
            }
        }else if(s=="back"){
            if(front==-1 || front>rear){
                cout<<"-1"<<"\n";
            }else{
                cout<<queue[rear]<<"\n";
            }
        }else if(s=="size"){
            if(front==-1 || front>rear){
                cout<<"0"<<"\n";
            }else{
                cout<<rear-front+1<<"\n";
            }
        }else if(s=="empty"){
            empty();
        }else if(s=="pop"){
            if(front==-1 || front>rear){
                cout<<"-1"<<"\n";
            }else{
                del();
            }
        }
    }
 
    return 0;
}
cs

 

문제 첨부

https://www.acmicpc.net/problem/10845

 

10845번: 큐

첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 10,000)이 주어진다. 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다. 문제에 나와있지 ��

www.acmicpc.net

 

github 첨부

https://github.com/jungahshin/algorithm/blob/master/c:c%2B%2B/10845.cpp

 

jungahshin/algorithm

algorithm study. Contribute to jungahshin/algorithm development by creating an account on GitHub.

github.com

반응형
Comments