Skip to main content

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

Project description

steap_by_steap

image

  before i create it i was searching if "steap_by_steap" was available, and after publishing it I realized that step_by_step did too.

"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.

steap mean:"A state when a line of code is excuting", it have the a in the middle beacause the word Algorithms start with A

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.2.1.tar.gz (4.3 MB view details)

Uploaded Source

Built Distribution

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

steap_by_steap-0.2.1-cp310-cp310-manylinux_2_34_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

File details

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

File metadata

  • Download URL: steap_by_steap-0.2.1.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for steap_by_steap-0.2.1.tar.gz
Algorithm Hash digest
SHA256 9e3d07fcafc45bd8840316a691ca71c818a21dd392976e7ccd963851d230f02b
MD5 e33c2ca01fe4064d138690460ef0b7db
BLAKE2b-256 79d4f12d2fc8555ba4cdf1998f3a6d09cdf761ef1ca59427a42c205176d99258

See more details on using hashes here.

File details

Details for the file steap_by_steap-0.2.1-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for steap_by_steap-0.2.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5d6226bac384164b520c0d0ab3005aa06f6806bc6ff00155160c9900b3ee6644
MD5 c41319bad488427328b69555d5a5fe65
BLAKE2b-256 5ebb4033e547d96a61a1d51beb298ef38ca217164a73f32b78a9eee56b0fe881

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