쌓고 쌓다
[프로그래머스] 올바른 괄호 C++ 풀이 본문
https://school.programmers.co.kr/learn/courses/30/lessons/12909
전체 코드
#include <string>
#include <iostream>
#include <stack>
using namespace std;
bool solution(string s)
{
bool answer = true;
stack<char> st;
for(int i=0;i<s.length();i++)
{
if(s[i]=='(')
st.push('(');
else
{
if(st.empty())
{
answer=false;
break;
}
else
st.pop();
}
}
if(!st.empty())
answer=false;
return answer;
}
풀이 방법
올바른 괄호의 문제 풀이 방법은 아래에 정리해놨다.
https://non-stop.tistory.com/90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 피보나치 수 C++ 풀이 (0) | 2022.10.03 |
---|---|
[프로그래머스] 숫자의 표현 C++ 풀이 (0) | 2022.09.30 |
[프로그래머스] 최솟값 만들기 C++ 풀이 (0) | 2022.09.29 |
[프로그래머스] 이진 변환 반복하기 C++ 풀이 (0) | 2022.09.28 |
[프로그래머스] JadenCase 문자열 C++ 풀이 (0) | 2022.09.21 |
Comments