프로그래머스 12909: 올바른 괄호
[문제바로가기✍️](프로그래머스 12909: 올바른 괄호)
#include<string>
#include <iostream>
#include<stack>
using namespace std;
bool solution(string s)
{
bool answer = true;
stack<char> st;
int i = 0;
while (true)
{
char c = s[i];
if (c=='(' )
{
st.push(c);
}
else if (c == ')' ) {
if (st.size() > 0) {
if ( st.top() == '(' && c == ')') {
st.pop();
}
else {
answer = false;
break;
}
}
else {
answer = false;
break;
}
}
else //맨 마지막까지 stack이 비어지지 않는 경우는 false(괄호 짝이 안맞는 경우임)
{
if (st.empty()) {
answer = true;
break;
}
else {
answer = false;
break;
}
}
i++;
}
return answer;
}
Author And Source
이 문제에 관하여(프로그래머스 12909: 올바른 괄호), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@mam07065/프로그래머스-12909-올바른-괄호저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)