Skip to content

Commit de6c4be

Browse files
committed
README.md
1 parent bd77fc1 commit de6c4be

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ You can implement these notes in your own favourite programming language.
77
## Data Structures and Algorithms Patterns implemented in Python.
88

99
### Topics covered:
10+
- [x] [Graphs](Graphs)
11+
- [x] [Breadth First Search](Graphs/bfs.py)
12+
- [x] [Depth First Search](Graphs/dfs.py)
1013
- [x] [Recursion](Recursion)
1114
- [x] [Basic Problems](Recursion/Basic-Problems)
1215
- [x] [Factorial](Recursion/Basic-Problems/factorial.py)
@@ -20,9 +23,6 @@ You can implement these notes in your own favourite programming language.
2023
- [x] [Remove Consecutive Duplicates](Recursion/Strings/removeconsecutiveduplicates.py)
2124
- [x] [Recursion on Linked List](Recursion/Linked-List)
2225
- [x] [Reverse Linked List](Recursion/Linked-List/Reverse-Linked-List.py)
23-
- [x] [Graphs](Graphs)
24-
- [x] [Breadth First Search](Graphs/bfs.py)
25-
- [x] [Depth First Search](Graphs/dfs.py)
2626
- [x] [Searching Alogorithms](Searching-Algo)
2727
- [x] [Linear Search](Searching-Algo/linearsearch.py)
2828
- [x] [Binary Search](Searching-Algo/binarysearch.py)
@@ -32,12 +32,12 @@ You can implement these notes in your own favourite programming language.
3232
- [x] [Shell Sort](Sorting-Algo/shellsort.py)
3333
- [x] [Selection Sort](Sorting-Algo/selectionsort.py)
3434
- [x] [Bucket Sort](Sorting-Algo/bucketsort.py)
35+
- [x] [Stack And Queue](Trees)
36+
- [x] [Stack](Stack-and-Queue/stack.py)
37+
- [x] [Queue](Stack-and-Queue/queue.py)
3538
- [x] [Strings](Strings)
3639
- [x] [KMP (Knuth Morris Pratt) Pattern Searching](Strings/KMP.py)
3740
- [x] [Trees](Trees)
3841
- [x] [Binary Search Tree](Trees/binarysearchtree.py)
39-
- [x] [Stack And Queue](Trees)
40-
- [x] [Stack](Stack-and-Queue/stack.py)
41-
- [x] [Queue](Stack-and-Queue/queue.py)
4242

4343
This repository is for the references, anyone can feel free to use this.

0 commit comments

Comments
 (0)