Question: I need c++ program that has working stack where the user is allowed to enter a single string consisting of left and right curly braces
I need c++ program that has working stack where the user is allowed to enter a single string consisting of left and right curly braces(not parentheses or bracket) and program must verify whether or not the sequence is balanced. Thank You
example output:
Enter your sequence: {} Sequence is balanced. Enter your sequence: }{ Sequence is not balanced. Enter your sequence: {{{}} Sequence is not balanced. Enter your sequence: {}{} Sequence is balanced. Enter your sequence: {{{{{{}}}}}}{{{{{}}}}}{}{}{}{}{}{}{{}} Sequence is balanced.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
