An educational Algorithmic Library
Project description
eduAlgo
Objective
A python package published at PyPi. The project can be viewed here - PyPi - eduAlgo.
Aim Of The Package
This is a very simple python package made with python script to study different algorithms for educational purposes. This package is under planning version and aims to achieve the following,
- Contain All the available algorithms
- Help students with learning space and time complexity
- Visualizing Algorithms
- Getting resources, articles etc to study about python and Algorithms
- Become a handy tool for the programmers while using different algorithms on daily basis
Documentation
The documentation for the included methods and their implementations can be found here - eduAlgo-Documentation
Algorithms Yet to Publish
- Searching Algorithms and Visualizations
- Sorting Algorithms and Visualizations
- Graph Algorithms and Visualizations
- Linked List Implementations and Vizualizations
- Tree Types, Vizualizations and Implementations
Installation
Fast install:
pip install eduAlgo
Example
from edualgo import LinkedList as ll
llist1 = ll.linkedlist()
llist2 = ll.linkedlist()
arr1 = list(map(int,input().split()))
arr2 = list(map(int,input().split()))
for i in arr1:
llist1.append(i)
for i in arr2:
llist2.append(i)
sol = ll.list_algorithms()
llist3 = ll.linkedlist()
llist3.head = sol.mergeTwoLists(llist1.head,llist2.head)
llist3.printLL()
Input:
1 2 3
2 3 4
Output:
1 2 2 3 3 4
License
This package is under MIT License copyright @Abhijit Tripathy
About The Contributors
|
Abhijit Tripathy DSA Developer and Python Programmer |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file eduAlgo-1.1.5.tar.gz
.
File metadata
- Download URL: eduAlgo-1.1.5.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
74bfb4d225beab8c45e75dc276cc7a6803aadcfe9df6ecc8e3159c3e115d2b55
|
|
MD5 |
68a9705975e811d1a5e166aaab1d9c5e
|
|
BLAKE2b-256 |
fa5284aa9006a5e27a360931d01cd08949e18636cdcda39a300ad363af1bda8f
|
File details
Details for the file eduAlgo-1.1.5-py3-none-any.whl
.
File metadata
- Download URL: eduAlgo-1.1.5-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f44582c1891e9a4daca4bb38cf24fce973175a0f224e1fdcd1afdf124990d095
|
|
MD5 |
9c050c4c8f734f56cb8704cd2a504731
|
|
BLAKE2b-256 |
75f8121bd34e3552400e96931cf54b851d7c9138a12a12b002bf15a6a019d3a0
|