forked from lyuka/data_structure_and_algorithm_using_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcppsrc_validation.py
28 lines (24 loc) · 837 Bytes
/
cppsrc_validation.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
# Implementation of the algorithm for validating balanced brackets in
# a C++ source file.
from lliststack import Stack
def isValidSource( srcfile ):
s = Stack()
for line in srcfile:
for token in line:
if token in "{[(":
s.push( token )
elif token in "}])":
if s.isEmpty():
return False
else:
left = s.pop()
print token, left
if ( token == '}' and left != '{' ) or \
( token == ']' and left != '[' ) or \
( token == ')' and left != '(' ):
return False
return s.isEmpty()
if __name__ == '__main__':
srcfile = open('cpp_srcfile.txt')
print isValidSource( srcfile )
srcfile.close()