Python/other/nested_brackets.py

45 lines
1.2 KiB
Python
Raw Normal View History

2019-10-05 05:14:13 +00:00
"""
2016-12-11 09:23:33 +00:00
The nested brackets problem is a problem that determines if a sequence of
brackets are properly nested. A sequence of brackets s is considered properly nested
if any of the following conditions are true:
- s is empty
- s has the form (U) or [U] or {U} where U is a properly nested string
- s has the form VW where V and W are properly nested strings
2016-12-11 09:23:33 +00:00
For example, the string "()()[()]" is properly nested but "[(()]" is not.
The function called is_balanced takes as input a string S which is a sequence of
brackets and returns true if S is nested and false otherwise.
2019-10-05 05:14:13 +00:00
"""
def is_balanced(s):
2016-12-11 09:23:33 +00:00
stack = []
2019-10-05 05:14:13 +00:00
open_brackets = set({"(", "[", "{"})
closed_brackets = set({")", "]", "}"})
open_to_closed = {"{": "}", "[": "]", "(": ")"}
2017-10-20 16:35:53 +00:00
for i in range(len(s)):
if s[i] in open_brackets:
stack.append(s[i])
2017-10-20 16:35:53 +00:00
elif s[i] in closed_brackets and (
len(stack) == 0 or (len(stack) > 0 and open_to_closed[stack.pop()] != s[i])
):
return False
2017-10-20 16:35:53 +00:00
return len(stack) == 0
2016-12-11 09:23:33 +00:00
def main():
s = input("Enter sequence of brackets: ")
if is_balanced(s):
print(s, "is balanced")
2016-12-11 09:23:33 +00:00
else:
print(s, "is not balanced")
2016-12-11 09:23:33 +00:00
if __name__ == "__main__":
main()