-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultipleParenthesisMatching.cpp
99 lines (89 loc) · 1.95 KB
/
MultipleParenthesisMatching.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#include <bits/stdc++.h>
using namespace std;
struct Node
{
int size;
int top;
char *arr;
};
int isFull(Node *ptr)
{
if (ptr->top == ptr->size - 1)
return 1;
else
return 0;
}
int isEmpty(Node *ptr)
{
if (ptr->top == -1)
return 1;
else
return 0;
}
void push(Node *ptr, char value)
{
if (isFull(ptr))
cout << "Stack Overflow !!!" << endl;
else
{
ptr->top++;
ptr->arr[ptr->top] = value;
}
}
char pop(Node *ptr)
{
if (isEmpty(ptr))
{
cout << "Stack Underflow!";
return -1;
}
else
{
char element = ptr->arr[ptr->top];
ptr->top--;
return element;
}
}
int matched(char a, char b)
{
if (a == '{' && b == '}')
return 1;
if (a == '(' && b == ')')
return 1;
if (a == '[' && b == ']')
return 1;
return 0;
}
int parenthesisMatching(const char *expression)
{
Node *sp = new Node;
sp->size = 20;
sp->top = -1;
sp->arr = new char[sp->size];
for (int i = 0; expression[i] != '\0'; i++)
{
if (expression[i] == '(' || expression[i] == '{' || expression[i] == '[')
push(sp, expression[i]);
else if (expression[i] == ')' || expression[i] == '}' || expression[i] == ']')
{
if (isEmpty(sp))
return 0;
char popped_element = pop(sp);
if (!matched(popped_element, expression[i]))
return 0;
}
}
if (isEmpty(sp))
return 1;
else
return 0;
}
int main()
{ // it is necessary to have const char pointer else code will not work as per as c++
const char *expression = "((8)[{*--$$9}])";
if (parenthesisMatching(expression))
cout << "The parenthesis is matching";
else
cout << "The parenthesis is not matching";
return 0;
}