일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- 그래프
- 파이썬
- 분할 정복
- 그리디
- 기초
- UNIX
- 스택
- NQueen
- 트리
- format 메서드
- 유닉스
- MiniHeap
- 순차 탐색
- type 함수
- 우분투
- 동적 계획
- Git
- 재귀 함수
- 문법
- 정렬
- 백준
- 배열
- 자료구조
- IT
- 자기개발
- 이진 탐색
- 탐색
- git hub
- sys.stdin.readline()
Archives
- Today
- Total
코딩고치
[백준][자료구조]에디터 본문
이 문제 역시 스택을 이용하여 프로그래밍을 하는 문제이다. 두 개의 스택을 만들어서 커서의 이동을 구현하였다.
#include <iostream>
#include <stack>
#include <string>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
string str;
cin >> str;
int len = str.length(); //커서 왼쪽 문자열 길이
int len2 = 0; //커서 오른쪽 문자열 길이
int n;
cin >> n;
stack<char> sta1; //커서 왼쪽 문자열
stack<char> sta2; //오른쪽 문자열
for (int i = 0; i < len; i++)
sta1.push(str[i]); //입력받은 글자 push
while (n--)
{
string cmd;
cin >> cmd;
if (cmd == "L")
{
if (sta1.empty())
continue;
else
{
sta2.push(sta1.top());
sta1.pop();
len--; //왼쪽 문자열 줄고
len2++; //오른쪽 문자열 늘어남
}
}
else if (cmd == "D")
{
if (sta2.empty())
continue;
else
{
sta1.push(sta2.top());
sta2.pop();
len++; //왼쪽 문자열 늘고
len2--; //오른쪽 문자열 줄어듬
}
}
else if (cmd == "B")
{
if (sta1.empty())
continue;
else
{
sta1.pop();
len--;
}
}
else if (cmd == "P")
{
char ch;
cin >> ch;
sta1.push(ch);
len++;
}
}
while (len > 0) //왼쪽 스택의 문자열을 오른쪽 스택으로 옮김
{ //LIFO 성질 때문에
sta2.push(sta1.top());
sta1.pop();
len--;
}
while (!sta2.empty())
{
cout << sta2.top();
sta2.pop();
}
cout << '\n';
return 0;
}
알고 보니 굳이 문자열의 길이 상관없이 empty()로 while문의 조건을 만들 수 있었다. 그렇게 하면 변수로 의한 메모리 낭비를 줄일 수 있을 것으로 생각된다.
'백준 알고리즘 기초 > 자료구조' 카테고리의 다른 글
[백준][자료구조]조세퍼스 문제 (0) | 2019.09.05 |
---|---|
[백준][자료구조]큐 (0) | 2019.09.05 |
[백준][자료구조]스택 수열 (0) | 2019.09.04 |
[백준][자료구조]괄호 (0) | 2019.09.04 |
[백준][자료구조]스택 (0) | 2019.09.03 |
Comments