|
5 | 5 | # Data Structues and Algorithms Collection Python
|
6 | 6 | 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.
|
7 | 7 |
|
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. |
9 | 10 |
|
10 | 11 | # 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 | + |
11 | 17 | | Name | Completed | Tested |
|
12 | 18 | | :----: | :----: | :----: |
|
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 | + |
17 | 24 |
|
18 | 25 | # Tree
|
19 | 26 | | Name | Completed | Tested |
|
20 | 27 | | :----: | :----: | :----: |
|
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: | |
23 | 30 |
|
24 | 31 |
|
25 | 32 | # Contributing
|
|
0 commit comments