Skip to main content

A Python package with basic data structures

Project description

Data Structures Package 🧠⚡

A Python library that makes data structures intuitive, efficient, and fun to use!

PyPI Version License Python Versions

Why Use This Package?

Battle-tested implementations of essential data structures.
Clean, readable code with type hints and thorough docs.
Zero dependencies — works with vanilla Python.
Perfect for learning (students) or production (devs).

from data_structures import Stack, AVLTree, SinglyLinkedList

stack = Stack()
stack.push("Hello, world!")  # That easy.
📦 Install
bash
pip install data-structures-pkg
🧩 Whats Inside?
Structure	Module Import Path	Key Features
Linked Lists	from data_structures.linked_list import *	Singly, Doubly, Circular variants
Trees	from data_structures.tree import *	Binary, BST, AVL, Heap
Graphs	from data_structures.graph import *	Directed, Weighted, Traversal utils
Stack/Queue	from data_structures import Stack, Queue	Thread-safe, O(1) operations


🚀 Quick Examples
1. Linked List
python
from data_structures.linked_list import SinglyLinkedList

ll = SinglyLinkedList()
ll.append(1)
ll.append(2)
print(ll)  # Output: [1 -> 2]
2. AVL Tree (Auto-Balancing)
python
from data_structures.tree import AVLTree

avl = AVLTree()
avl.insert(3)
avl.insert(1)
avl.insert(2)  # Automatically balances itself!
3. Weighted Graph
python
from data_structures.graph import WeightedGraph

wg = WeightedGraph()
wg.add_edge("A", "B", weight=4)
wg.dijkstra("A")  # Shortest path from A to all nodes
📚 Full Documentation
Explore detailed guides and API references:

Linked Lists

Trees

Graphs



🤝 Contributing
Love this package? Heres how to help:

Star the repo 

Report bugs or suggest features in Issues.

Submit a PR for improvements.

📜 License
MIT © Yashashvi bhardwaj

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

data_structure_hub-0.2.2.tar.gz (20.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

data_structure_hub-0.2.2-py3-none-any.whl (30.3 kB view details)

Uploaded Python 3

File details

Details for the file data_structure_hub-0.2.2.tar.gz.

File metadata

  • Download URL: data_structure_hub-0.2.2.tar.gz
  • Upload date:
  • Size: 20.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for data_structure_hub-0.2.2.tar.gz
Algorithm Hash digest
SHA256 d44ebc2329928d74171aeca24fc809587b6da73d4991e4badfaa3e7fe894dc42
MD5 0e0f02097ce5316acd8bb02bb0178da0
BLAKE2b-256 c57b029aabfbbbb0bcedcc37f6d4a2da3befc5b39bcf833cb7423c26b4408548

See more details on using hashes here.

File details

Details for the file data_structure_hub-0.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for data_structure_hub-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fac5d5483b3cc6fa033470a785eaff694b45045e497dfe7f14b1b86ac05a3b9c
MD5 ca6ad9abc6edce16a8570ffd7957ec15
BLAKE2b-256 af4981280c3282f47311fd5a553a101c35d5e11b4159171e7b877da72aba8c98

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page