codezonediitj / pydatastructs

A python package for data structures and algorithms
https://pydatastructs.readthedocs.io/en/stable/
Other
202 stars 270 forks source link

Added Bucket Sort #300

Closed seshasaisuhashdesu closed 4 years ago

seshasaisuhashdesu commented 4 years ago

References to other Issues or PRs or Relevant literature

Fixes #291

Brief description of what is fixed or changed

Bucket Sort is added with the buckets sorter as insertion sort

codecov[bot] commented 4 years ago

Codecov Report

Merging #300 into master will increase coverage by 0.017%. The diff coverage is 100.000%.

@@              Coverage Diff              @@
##            master      #300       +/-   ##
=============================================
+ Coverage   98.827%   98.845%   +0.017%     
=============================================
  Files           25        25               
  Lines         2901      2944       +43     
=============================================
+ Hits          2867      2910       +43     
  Misses          34        34               
Impacted Files Coverage Δ
pydatastructs/linear_data_structures/__init__.py 100.000% <ø> (ø)
pydatastructs/linear_data_structures/algorithms.py 99.447% <100.000%> (+0.172%) :arrow_up:

Impacted file tree graph

czgdp1807 commented 4 years ago

Thanks for your contributions.