일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- 탐색
- IT
- MiniHeap
- 트리
- 자기개발
- 유닉스
- Git
- 스택
- 백준
- sys.stdin.readline()
- 알고리즘
- 이진 탐색
- git hub
- 우분투
- 배열
- 정렬
- type 함수
- 분할 정복
- 그리디
- 재귀 함수
- NQueen
- 파이썬
- 순차 탐색
- 기초
- 동적 계획
- 그래프
- 문법
- format 메서드
- UNIX
Archives
- Today
- Total
코딩고치
[백준][자료구조]괄호 본문
자료구조 스택을 이용하여 입력으로 주어진 괄호 문자열이 VPS인지 아닌지 확인하는 알고리즘을 구현하는 문제이다.
#include <iostream>
#include <stack>
#include <string>
using namespace std;
bool confirm(string str)
{
getline(cin, str); //getline함수를 이용하여 문자열을 받음
stack<char> sta;
for (char ch : str)
{
if (ch == '(')
sta.push(ch); //여는 괄호일 경우 push
else
{
if (!sta.empty())
sta.pop(); //닫는 괄호일 경우 stack이 비어있지 않으면 pop
else
return false; //stack이 비어있을 경우 false
}
}
return sta.empty(); //stack비어있는 경우 true 비어있지 않으면 false
}
int main(void)
{
int n;
cin >> n;
cin.ignore(); //n입력 시 입력되는 '\n'제거
while (n--)
{
string str;
if (confirm(str))
cout << "YES" << '\n'; //confirm함수가 참일 경우
else
cout << "NO" << '\n'; //거짓일 경우
}
return 0;
}
'백준 알고리즘 기초 > 자료구조' 카테고리의 다른 글
[백준][자료구조]조세퍼스 문제 (0) | 2019.09.05 |
---|---|
[백준][자료구조]큐 (0) | 2019.09.05 |
[백준][자료구조]에디터 (0) | 2019.09.05 |
[백준][자료구조]스택 수열 (0) | 2019.09.04 |
[백준][자료구조]스택 (0) | 2019.09.03 |
Comments