a3ro-dev / dsa

My data structure and algorithm repository. In Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dsa

DATA STRUCTURE & ALGORITHMS

PYTHON 3.10

"TABLE OF CONTENTS"

> Linked-List (DataStructure)

to use this data structure, import it like this:
import linked_list 
ll = linked_list.LinkedList()

---------------------------------------------

> Doubly-linked-List (DataStructure)

to use this data structure, import it like this:
import doubly_linked_list
dll = doubly_linked_list.DoublyLinkedList()

---------------------------------------------

> Stack (DataStructure)

to use this data structure, import it like this:
import stack
stack = stack.stack()

---------------------------------------------

> Queue (DataStructure)

to use this data structure, import it like this:
import queue_ds as queue
myQueue = queue.Queue()

---------------------------------------------

About

My data structure and algorithm repository. In Python


Languages

Language:Python 100.0%