-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathStack_ParanthesisBalance.py
62 lines (46 loc) · 1.24 KB
/
Stack_ParanthesisBalance.py
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
from Stack import Stack
def compare(top,sym):
opens = '([{'
closes = ')]}'
return opens.index(top) == closes.index(sym)
def par_check1(symbol_str):
s = Stack()
Balanced = True
pos = 0
while pos<len(symbol_str) and Balanced:
if symbol_str[pos] == "(":
s.push("(")
else:
if s.is_empty():
Balanced = False
else:
s.pop()
pos += 1
if Balanced and s.is_empty():
return True
else:
return False
def par_check2(symbol_str):
s1 = Stack()
Balanced = True
pos = 0
while pos<len(symbol_str) and Balanced:
sym = symbol_str[pos]
if sym in "{[(":
s1.push(sym)
else:
if s1.is_empty():
Balanced = False
else:
top = s1.pop()
if not compare(top,sym):
balanced = False
pos += 1
if Balanced and s1.is_empty():
return True
else:
return False
print(par_check1('(()()()())'))
print(par_check1('(()()()()'))
print(par_check2('{()[{()}]}'))
print(par_check2('{()[{()]}'))