Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/a3ro-dev/dsa

My data structure and algorithm repository. In Python
https://github.com/a3ro-dev/dsa

data-structures linked-list python stack

Last synced: 13 days ago
JSON representation

My data structure and algorithm repository. In Python

Awesome Lists containing this project

README

        

# dsa
DATA STRUCTURE & ALGORITHMS

PYTHON 3.10

```python
"TABLE OF CONTENTS"
```

`>` Linked-List (DataStructure)
```xml
to use this data structure, import it like this:
```
```python
import linked_list
ll = linked_list.LinkedList()
```
# ---------------------------------------------

`>` Doubly-linked-List (DataStructure)
```xml
to use this data structure, import it like this:
```
```python
import doubly_linked_list
dll = doubly_linked_list.DoublyLinkedList()
```
# ---------------------------------------------

`>` Stack (DataStructure)
```xml
to use this data structure, import it like this:
```
```python
import stack
stack = stack.stack()
```
# ---------------------------------------------

`>` Queue (DataStructure)
```xml
to use this data structure, import it like this:
```
```python
import queue_ds as queue
myQueue = queue.Queue()
```
# ---------------------------------------------