Skip to content

mcvarer/algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic Data Structure Algorithms

Installing

pip install hammuon

or

pip install -e git+https://github.com/mcvarer/algorithms.git#egg=hammuon

Usage

from hammuon.data_structure.sortings import Sorting

ss = Sorting()
print(ss.quickSort([8, 12, 55, -12]))
print(ss.bubbleSort([8, 12, 55, -12]))
print(ss.selectionSort([8, 12, 55, -12]))

Output

[-12, 8, 12, 55]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages