Skip to content

Commit 2c20abb

Browse files
committed
Updated Readme
1 parent 721b40d commit 2c20abb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ Completed
3333
- Kandane's Algorithm
3434
- Knapsack Problem (0/1 and unbounded)
3535
- Prefix Tries
36+
- Stack ADT (with example problems)
37+
- String Reverse
38+
- Parenthesis Matching
39+
- Infix to Postfix
3640

3741

3842
Tests

linear_datastructures/stack-adt.py

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def match_paren(parens):
4141
return False
4242
return stack.isEmpty()
4343

44-
4544
def infix_to_postfix(infixexpr):
4645
prec = { '+': 2, '-': 2, '*': 3, '/': 3,'(': 1 } # denoting precedence
4746
operator_stack = Stack()

0 commit comments

Comments
 (0)