Skip to content

Commit 6666e41

Browse files
committed
Update Readme.md
1 parent 8a6accb commit 6666e41

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,28 @@
55
# Data Structues and Algorithms Collection Python
66
In this repo I upload everything I do related to data structures and algorithm that I learned to solve, implement it. The goal of this repo is to have simple readable scratch implementation of data structures with notes and proper documentation. Along with Coding Interview problems and its solutions.
77

8-
Hope it helps you. Don't forgot to :star:.
8+
:white_check_mark: : If the implementation completed or tested.
9+
:negative_squared_cross_mark: : If the implementation incomplete or untested.
910

1011
# Linked List
12+
* :white_check_mark: [LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/LinkedList.py)
13+
* :white_check_mark: [Circular LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/CircularSinglyLinkedList.py)
14+
* :white_check_mark: [Doubly LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/DoublyLinkedList.py)
15+
* :white_check_mark: [Queue with LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/QueueLinkedList.py)
16+
1117
| Name | Completed | Tested |
1218
| :----: | :----: | :----: |
13-
| [LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/LinkedList.py) | <ul><li>- [x] </li></ul> | <ul><li>- [x] </li></ul> |
14-
| [Circular LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/CircularSinglyLinkedList.py) | <ul><li>- [x] </li></ul> | <ul><li>- [x] </li></ul> |
15-
| [Doubly LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/DoublyLinkedList.py) | <ul><li>- [x] </li></ul> | <ul><li>- [x] </li></ul> |
16-
| [Queue with LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/QueueLinkedList.py) | <ul><li>- [x] </li></ul> | <ul><li>- [x] </li></ul> |
19+
| [LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/LinkedList.py) | :white_check_mark: | :white_check_mark: |
20+
| [Circular LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/CircularSinglyLinkedList.py) | :white_check_mark: | :white_check_mark: |
21+
| [Doubly LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/DoublyLinkedList.py) | :white_check_mark: | :white_check_mark: |
22+
| [Queue with LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/QueueLinkedList.py) | :white_check_mark: | :white_check_mark: |
23+
1724

1825
# Tree
1926
| Name | Completed | Tested |
2027
| :----: | :----: | :----: |
21-
| [Binary Tree By LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/Tree/BinaryTreeLL.py) | <ul><li>- :heavy_check_mark: </li></ul> | <ul><li>- [x] </li></ul> |
22-
| [Binary Tree By PythonList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/Tree/BinaryTreePL.py) | <ul><li>- [] </li></ul> | <ul><li>- [] </li></ul> |
28+
| [Binary Tree By LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/Tree/BinaryTreeLL.py) | :white_check_mark: | :white_check_mark: |
29+
| [Binary Tree By PythonList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/Tree/BinaryTreePL.py) | :negative_squared_cross_mark: | :negative_squared_cross_mark: |
2330

2431

2532
# Contributing

0 commit comments

Comments
 (0)