Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
sorting_asmaa is a Python package that gives the user options to sort
different types of inputs. The package includes K-way merge sort <https://en.wikipedia.org/wiki/K-way_merge_algorithm>
,
introsort <https://en.wikipedia.org/wiki/Introsort>
,\ Bucket sort <https://en.wikipedia.org/wiki/Bucket_sort>
,\ shell sort <https://en.wikipedia.org/wiki/Shellsort>
, and Radix sort <https://en.wikipedia.org/wiki/Radix_sort>
__. ## Getting Started
Before proceeding with the package installation, the following packages
are needed: Math <https://docs.python.org/2/library/math.html>
__ and
timeit <https://docs.python.org/2/library/timeit.html>
__ ###
Installing
On command prompt
::
$ pip install sorting_asmaa
To use shell sort,
::
slist=[1,3,4,5] #add your list
print(sorting_asmaa.shellsort_asmaa(slist))
To use k-way merge sort
::
k=2 #add the value of k
slist=[1,3,4,5] #add your list
sorting_asmaa.kmerge_asmaa(slist)
To use bucket sort
::
slist=[1,3,4,5] #add your list
sorting_asmaa.bucketsort_asmaa(slist)
To use radix sort
::
slist=[1,3,4,5] #add your non-negative input
sorting_asmaa.radixsort_asmaa(slist)
To use intro sort
::
slist=[1,3,4,5] #add your input
sorting_asmaa.introsort_asmaa(slist)
Dillinger <https://dillinger.io/>
__ - Readme framework usedThis project is licensed under the MIT License - see the
LICENSE.md <LICENSE.md>
__ file for details
FAQs
A sorting package
We found that sorting-asmaa demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.