Identify and mark unmatched parenthesis in an expression
Given an expression, find and mark matched and unmatched parenthesis in it. We need to replace all balanced opening parenthesis with 0, balanced closing parenthesis with 1 and all unbalanced with -1.
Examples:
Input : ((a) Output : -10a1 Input : (a)) Output : 0a1-1 Input : (((abc))((d))))) Output : 000abc1100d111-1-1
The idea is based on stack. We run a loop from the start of the string upto end and for every ‘(‘, we push it into stack. If stack is empty and we encounter an closing bracket ‘)’ the we replace -1 at that index of the strig. Else we replace all opening brackets ‘(‘ with 0 and closing brackets with 1. Then pop from the stack.
C++
// CPP program to mark balanced and unbalanced // parenthesis. #include <bits/stdc++.h> using namespace std; void identifyParenthesis(string a) { stack<int> st; // run the loop upto end of the string for (int i = 0; i < a.length(); i++) { // if a[i] is opening bracket then push // into stack if (a[i] == '(') st.push(i); // if a[i] is closing bracket ')' else if (a[i] == ')') { // If this closing bracket is unmatched if (st.empty()) a.replace(i, 1, "-1"); else { // replace all opening brackets with 0 // and closing brackets with 1 a.replace(i, 1, "1"); a.replace(st.top(), 1, "0"); st.pop(); } } } // if stack is not empty then pop out all // elements from it and replace -1 at that // index of the string while (!st.empty()) { a.replace(st.top(), 1, "-1"); st.pop(); } // print final string cout << a << endl; } // Driver code int main() { string str = "(a))"; identifyParenthesis(str); return 0; } |
Java
// Java program to mark balanced and // unbalanced parenthesis. import java.util.*; class GFG { static void identifyParenthesis(StringBuffer a) { Stack<Integer> st = new Stack<Integer>(); // run the loop upto end of the string for (int i = 0; i < a.length(); i++) { // if a[i] is opening bracket then push // into stack if (a.charAt(i) == '(') st.push(i); // if a[i] is closing bracket ')' else if (a.charAt(i) == ')') { // If this closing bracket is unmatched if (st.empty()) a.replace(i, i + 1, "-1"); else { // replace all opening brackets with 0 // and closing brackets with 1 a.replace(i, i + 1, "1"); a.replace(st.peek(), st.peek() + 1, "0"); st.pop(); } } } // if stack is not empty then pop out all // elements from it and replace -1 at that // index of the string while (!st.empty()) { a.replace(st.peek(), 1, "-1"); st.pop(); } // print final string System.out.println(a); } // Driver code public static void main(String[] args) { StringBuffer str = new StringBuffer("(a))"); identifyParenthesis(str); } } // This code is contributed by Princi Singh |
Output:
0a1-1
Recommended Posts:
- Find if an expression has duplicate parenthesis or not
- Number of balanced parenthesis substrings
- Check for balanced parenthesis without using stack
- InfyTQ 2019 : Find the position from where the parenthesis is not balanced
- Find maximum depth of nested parenthesis in a string
- Expression Evaluation
- Expression contains redundant bracket or not
- Balanced expression with replacement
- Arithmetic Expression Evalution
- Check if expression contains redundant bracket or not | Set 2
- Solve the Logical Expression given by string
- Evaluate an array expression with numbers, + and -
- Check for balanced parentheses in an expression
- Stack | Set 4 (Evaluation of Postfix Expression)
- Check for balanced parentheses in an expression | O(1) space
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



