-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Implement various sorting algorithms #661
Conversation
Fixes #660 Brief description of what is fixed or changedThis pull request introduces the Radix Sort algorithm to the sorting module, implemented in a style consistent with existing algorithms like
|
Here are my personal advice for you. But the final interpretation right is reserved by @czgdp1807 .
if backend == Backend.CPP:
return _algorithms.shell_sort(array, **kwargs)
from pydatastructs.linear_data_structures.algorithms import shell_sort, radix_sort to append after import of line1: from pydatastructs import (
... intro_sort, shell_sort, Backend)
Maybe there are other things should you do. I think you can search for an already implemented sorting algorithm, search for that function name in the IDE to see where it is used, and then imitate it to add your new function. This maybe reduce inconsistency. |
Sure sir, I got it. Thankyou for taking out your valueable time to review my PR and suggesting changes |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #661 +/- ##
=============================================
- Coverage 97.345% 97.278% -0.067%
=============================================
Files 36 36
Lines 4445 4593 +148
=============================================
+ Hits 4327 4468 +141
- Misses 118 125 +7
🚀 New features to boost your workflow:
|
@TripleCamellya Please check my latest commit, I have done all the suggested changes. I needed a seperated test file so kept the previous one for that |
|
@TripleCamellya Sir please see this PR |
Just wait for czgdp1807's review. |
okay sir. |
Fixes #660
Brief description of what is fixed or changed
This pull request introduces the Shell Sort algorithm to the sorting module, implemented in a style consistent with existing algorithms like
insertion_sort
. It includes:shell_sort
function inalgorithms.py
that supports partial sorting (start
toend
), custom comparators (comp
), and backend switching (backend
).test_algorithms.py
usingpytest
andpytest-cov
, covering typical cases, edge cases (empty, single-element), sorted/reverse-sorted lists, duplicates, and negative numbers.The implementation uses a simple gap sequence (
n // 2
) for clarity, with potential for future optimization using advanced sequences