짱아의 개발 기록장

백준 10828번. 스택(c++) / Stack 본문

Algorithm/Baekjoon

백준 10828번. 스택(c++) / Stack

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

본인은 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
// 스택
#include <iostream>
using namespace std;
 
int n, m;
string s;
int stack[10002= {0, };
int top = -1// 가장 위에 부분을 가리키고 있는 변수
 
bool empty()
{
    if(top==-1){
        return 1;
    }else{
        return 0;
    }
}
 
void push(int data)
{
    stack[++top] = data; // default값이 -1이기 때문에 ++top
}
 
void pop()
{
    cout<<stack[top]<<"\n";
    stack[top--= 0// top을 출력하고 0으로 만들고 top-1해준다.
}
 
int Top()
{
    if(empty()){
        return -1;
    }
 
    return stack[top];   
}
 
int main()
{
    cin>>n;
    for(int i=0; i<n; i++){
        cin>>s;
        if(s=="push"){
            cin>>m;
            push(m);
        }else if(s=="top"){
            cout<<Top()<<"\n";
        }else if(s=="size"){
            cout<<top+1<<"\n";
        }else if(s=="empty"){
            cout<<empty()<<"\n";
        }else if(s=="pop"){
            if(empty()){
                cout<<"-1"<<"\n";
            }else{
                pop();
            }
        }
    }
}
cs

 

문제 첨부

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

 

10828번: 스택

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

www.acmicpc.net

 

github 첨부

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

 

jungahshin/algorithm

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

github.com

반응형
Comments