-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMismatched_Parenthesis.cpp
131 lines (111 loc) · 2.39 KB
/
Mismatched_Parenthesis.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// Mismatched Parenthesis
// https://algospot.com/judge/problem/read/FIXPAREN
#include <stdio.h>
#include <stack>
using namespace std;
char getPair(char bracket);
int getPriority(char bracket, char brackets[]);
int main()
{
int nTestCases = 0;
stack<char> bracketStack;
char * brackets;
char * offsets;
char * priority;
scanf("%d", &nTestCases);
while (nTestCases--)
{
// Initialize new arrays
brackets = new char[100 + 1];
offsets = new char[100 + 1];
priority = new char[5 + 1];
scanf("%s %s", brackets, priority);
int position = 0;
int offsetIndex = 0;
// Search and verify
while (brackets[position] != '\0')
{
switch (brackets[position])
{
case '(':
case '{':
case '<':
case '[':
// Push current bracket to stack
bracketStack.push(brackets[position]);
// Set offset of current bracket to result array
offsets[offsetIndex] = position;
offsetIndex++;
break;
case ')':
case '}':
case '>':
case ']':
offsetIndex--;
char currentLeftPair = getPair(brackets[position]);
if (getPriority(currentLeftPair, priority) <
getPriority(bracketStack.top(), priority))
{
// Current right bracket is higher than left one
// Change left bracket to pair of current bracket
//printf("right is higher\n");
brackets[offsets[offsetIndex]] = currentLeftPair;
}
else
{
// Former left bracket is higher or eqaul than current one
// Change current bracket to pair of left bracket
//printf("left is higher or equal\n");
brackets[position] = getPair(brackets[offsets[offsetIndex]]);
}
// Remove offset from array and pop left bracket from stacks
offsets[offsetIndex] = 0;
bracketStack.pop();
break;
}
position++;
}
// Print out result brackets
for (int i = 0; i < position; i++)
{
printf("%c", brackets[i]);
}
printf("\n");
}
return 0;
}
char getPair(char bracket)
{
switch (bracket)
{
case ')':
return '(';
case '}':
return '{';
case ']':
return '[';
case '>':
return '<';
case '(':
return ')';
case '{':
return '}';
case '[':
return ']';
case '<':
return '>';
}
}
int getPriority(char bracket, char priority[])
{
int position = -1;
// Find bracket from priority array and return priority
while (priority[++position] != '\0')
{
if (priority[position] == bracket)
{
return position;
}
}
return position;
}