Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/a3ro-dev/dsa
- Owner: a3ro-dev
- Created: 2023-01-04T07:51:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-09T10:59:18.000Z (over 1 year ago)
- Last Synced: 2024-11-08T20:41:34.299Z (2 months ago)
- Topics: data-structures, linked-list, python, stack
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dsa
DATA STRUCTURE & ALGORITHMSPYTHON 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()
```
# ---------------------------------------------