Skip to content

Commit 17bdf30

Browse files
committed
Update Readme.md
1 parent 6666e41 commit 17bdf30

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
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

88
:white_check_mark: : If the implementation completed or tested.
9+
910
:negative_squared_cross_mark: : If the implementation incomplete or untested.
1011

1112
# Linked List
@@ -14,19 +15,22 @@ In this repo I upload everything I do related to data structures and algorithm t
1415
* :white_check_mark: [Doubly LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/DoublyLinkedList.py)
1516
* :white_check_mark: [Queue with LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/QueueLinkedList.py)
1617

17-
| Name | Completed | Tested |
18+
<!-- | Name | Completed | Tested |
1819
| :----: | :----: | :----: |
1920
| [LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/LinkedList.py) | :white_check_mark: | :white_check_mark: |
2021
| [Circular LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/CircularSinglyLinkedList.py) | :white_check_mark: | :white_check_mark: |
2122
| [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+
| [Queue with LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/LinkedList/QueueLinkedList.py) | :white_check_mark: | :white_check_mark: | -->
2324

2425

2526
# Tree
26-
| Name | Completed | Tested |
27+
* :white_check_mark: [Binary Tree By LinkedList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/Tree/BinaryTreeLL.py)
28+
* :negative_squared_cross_mark: [Binary Tree By PythonList](https://github.com/sushant097/Data-Structure-Algorithms-Collections-Python/blob/master/Tree/BinaryTreePL.py)
29+
30+
<!-- | Name | Completed | Tested |
2731
| :----: | :----: | :----: |
2832
| [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: |
33+
| [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: | -->
3034

3135

3236
# Contributing

0 commit comments

Comments
 (0)