Skip to main content

A library of some algorithms for python made in rust with pyo3

Project description

steap_by_steap

"steap_by_steap" is a comprehensive Python library designed to facilitate learning and implementation of fundamental algorithms and data structures. From efficient searching and sorting techniques to advanced data structures like trees and graphs, this library aims to empower developers with robust tools for algorithmic problem-solving. Whether you're a student delving into algorithms or a seasoned developer seeking reliable implementations, "steap_by_steap" provides a rich collection of algorithms, backed by clear documentation and easy integration.

Logo

image

Features

List of key features:

  • Binary Search
  • Binary Search Tree
  • B-tree
  • Compression
  • Convex Hull
  • Directed Graph (Digraph)
  • Graph
  • Heap
  • Interval Search Tree
  • Kd-tree
  • Line Segment
  • Non-finite Automata
  • Priority Queue
  • Queue
  • Regular Expressions (Regex)
  • R-way Trie
  • Shuffle
  • Simplex Method
  • Sorting Algorithms
  • Stack
  • Substring Search
  • Suffix Array
  • Ternary Search Trie
  • Union-Find
  • Weighted Graph

Installation

pip install steap_by_steap

Code Documentation

https://jero98772.github.io/steap_by_steap/steap_by_steap/index.html

Purpose

The purpose of "steap_by_steap" is to provide a comprehensive library of algorithms, enabling users to learn and implement various data structures and algorithms.

Contribution

Contributions are welcome. If you wish to contribute, please follow the guidelines outlined in CONTRIBUTING.md.

References

  • Courses:
    • Algorithms I & II from Princeton University

License

GPLv3 License

Examples of use

  1. Binary Search Example:

    import steap_by_steap
    
    array = [1, 3, 5, 7, 9, 11, 13, 15]
    target = 7
    
    index = steap_by_steap.Binary_search(array, target)
    if index is not None:
        print(f"Target {target} found at index {index}")
    else:
        print(f"Target {target} not found in the array")
    
  2. Binary Search Tree Example:

    import steap_by_steap
    
    bst = steap_by_steap.BinarySearchTree()
    bst.insert(5)
    bst.insert(3)
    bst.insert(7)
    
    print(bst.search(3))  # Should print True
    print(bst.search(6))  # Should print False
    
  3. Sorting Example (Selection Sort):

    import steap_by_steap
    
    arr = [64, 25, 12, 22, 11]
    sorted_arr = steap_by_steap.Selection(arr)
    print(sorted_arr)  # Output should be [11, 12, 22, 25, 64]
    
  4. Graph Example (Depth-First Search):

    import steap_by_steap
    
    graph = steap_by_steap.Graph()
    graph.add_edge(0, 1)
    graph.add_edge(0, 2)
    graph.add_edge(1, 2)
    graph.add_edge(2, 0)
    graph.add_edge(2, 3)
    graph.add_edge(3, 3)
    
    print("Following is DFS from vertex 2:")
    graph.dfs(2)
    
  5. Priority Queue Example:

    import steap_by_steap
    
    pq = steap_by_steap.PriorityQueue()
    pq.push(4)
    pq.push(5)
    pq.push(3)
    pq.push(10)
    print(pq.pop())  # Output: 3
    print(pq.pop())  # Output: 4
    print(pq.pop())  # Output: 5
    print(pq.is_empty())  # Output: False
    

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

steap_by_steap-0.1.0.tar.gz (4.3 MB view details)

Uploaded Source

File details

Details for the file steap_by_steap-0.1.0.tar.gz.

File metadata

  • Download URL: steap_by_steap-0.1.0.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for steap_by_steap-0.1.0.tar.gz
Algorithm Hash digest
SHA256 77eafe4c1ee412173839f8b1a4d7fb4313e64072a951e1ee25b894fb6a0b4944
MD5 f431464790712e0d7ea9145e6f46d3f4
BLAKE2b-256 dd26d6a7e457e139b8697d25cd43b933fa7c3521d1e20daf044736a101b3140e

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