Omkaar
dbee5f072f
Improve code on f-strings and brevity ( #6126 )
...
* Update strassen_matrix_multiplication.py
* Update matrix_operation.py
* Update enigma_machine2.py
* Update enigma_machine.py
* Update enigma_machine2.py
* Update rod_cutting.py
* Update external_sort.py
* Update sol1.py
* Update hill_cipher.py
* Update prime_numbers.py
* Update integration_by_simpson_approx.py
2022-05-13 20:51:44 +08:00
eee555
bbb88bb5c2
Fix bug in bucket_sort.py ( #6005 )
2022-05-13 04:28:51 +08:00
varopxndx
10d0e4ecbf
docs: Fix quicksort & binary tree traversal doc ( #4878 )
...
* Fix quicksort doc
* add binary tree traversals doc
* Add link to the reference
* Fix job
* Change url
* Update binary_tree_traversals.md
* Update normal_distribution_quick_sort.md
* Update normal_distribution_quick_sort.md
Co-authored-by: John Law <johnlaw.po@gmail.com >
2022-04-29 01:05:21 +08:00
yellowsto
6680e435a7
Update merge_insertion_sort.py ( #5833 )
...
* Update merge_insertion_sort.py
Fixes #5774
merge_insertion_sort
Co-Authored-By: AilisOsswald <44617437+AilisOsswald@users.noreply.github.com >
* Update merge_insertion_sort.py
Fixes #5774
merge_insertion_sort
Co-Authored-By: AilisOsswald <44617437+AilisOsswald@users.noreply.github.com >
* Update merge_insertion_sort.py
Fixes #5774
added permutation range from 0 to 4
Co-Authored-By: AilisOsswald <44617437+AilisOsswald@users.noreply.github.com >
* Use `all()`
Co-authored-by: AilisOsswald <44617437+AilisOsswald@users.noreply.github.com >
Co-authored-by: John Law <johnlaw.po@gmail.com >
2021-12-16 17:27:15 +08:00
Connor Bottum
31061aacf2
fix: use += in sorts/recursive_mergesort_array.py ( #5019 )
2021-10-27 00:43:46 +08:00
Manan Rathi
50485f7c8e
Fix typos in Sorts and Bit_manipulation ( #4949 )
...
* Fix several typos
* Update bit_manipulation/README.md
Co-authored-by: John Law <johnlaw.po@gmail.com >
* Update double_sort.py
Co-authored-by: John Law <johnlaw.po@gmail.com >
2021-10-20 16:42:32 +08:00
Sarvesh Kumar Dwivedi
90db98304e
Fix word typos in comments ( #4928 )
...
* fixed: spelling
nonegative -> non-negative
* fixed: spelling
transpostiion -> transposition
* fixed: spelling
topolical -> topological
* fixed: spelling
sufix -> suffix
2021-10-04 12:07:58 +08:00
Nolan Emirot
d530d2bcf4
fix: comment in patience sort ( #4972 )
2021-10-04 11:33:42 +08:00
Christian Clauss
cecf43d648
Pyupgrade to Python 3.9 ( #4718 )
...
* Pyupgrade to Python 3.9
* updating DIRECTORY.md
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2021-09-07 13:37:03 +02:00
Kiran Hipparagi
757d4fb84f
Added Dutch National Flag algorithm #4636 ( #4639 )
...
* Added Dutch national flag sort Algorithm
* Changed file name to dnf_sort.py
* Added descriptive name and type hint
Added descriptive name and type hint for parameter with doctest for the function dnf_sort.
* Added test cases
* Added doctest cases
* Update sorts/dnf_sort.py
* Added doctest for dutch_national_flag_sort sorts/dnf_sort.py
* Update sorts/dnf_sort.py
* Added doctest for the function
dutch_national_flag_sort
* update file as per black code formatter
* Update dnf_sort.py
* Update and rename dnf_sort.py to dutch_national_flag_sort.py
Co-authored-by: Christian Clauss <cclauss@me.com >
2021-08-31 22:06:49 +02:00
Bonnie
032999f36e
Create exchange_sort.py ( #4600 )
...
* Create exchange_sort.py
added exchange sort
* Fixed doctest in exchange_sort.py
* Fixed formatting error and added new length variable
added empty line at end of exchange_sort.py and turned len(numbers) into a variable
* Fixed formatting errors with black
added empty line
2021-08-15 07:43:05 +02:00
Benjamin Fein
650039a279
Add a recursive merge sort algorithm that accepts an array as input. ( #4462 )
...
This is a different recursive implementation of the merge sort algorithm.
* Recursive Merge Sort That Accepts an Array
Recursive Merge Sort That Accepts an Array
* Add Wikipedia Link
* Fixes naming conventions
* Update sorts/recursive_mergesort_array.py
Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com >
* Update sorts/recursive_mergesort_array.py
Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com >
* Update sorts/recursive_mergesort_array.py
Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com >
* Update sorts/recursive_mergesort_array.py
Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com >
* Update sorts/recursive_mergesort_array.py
Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com >
* Adds black format
* Removes unused variables
* Fixes variable names and adds documentation
* Fixes variable names to use snake_case.
* Removes double #.
* Update sorts/recursive_mergesort_array.py
Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com >
Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com >
Co-authored-by: Benjamin Fein <benfein78@icloud.com >
2021-05-30 10:27:42 -05:00
Tobias
b913a0d83a
Implemented MSD radix sort algorithm in-place ( #4449 )
...
* Implemented MSD radix sort algorithm inplace
* Fixed formatting
2021-05-24 22:36:57 +02:00
Tobias
b11e5314b7
Added implementation for MSD radix sort algorithm based on binary representation ( #4441 )
...
* Added MSD radix sort algorithm
* Fixed typos
* Added doctests
* Added link to wikipedia
* Added doctest and improved code
2021-05-20 21:15:51 +02:00
杜远超
67b33a295b
Optimization shell sort ( #4119 )
...
* optimization
* updating DIRECTORY.md
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2021-02-26 09:01:50 +08:00
Matthew
a4726ca248
[mypy]Correction of all errors in the sorts directory ( #4224 )
...
* [mypy] Add/fix type annotations for recursive_insertion_sort(#4085 )
* [mypy] Add/fix type annotations for bucket_sort(#4085 )
* [mypy] Reworked code for cocktail_shaker_sort so that missing return statement error is resolved(#4085 )
* [mypy] Add/fix type annotations for patience_sort(#4085 )
* [mypy] Add/fix type annotations for radix_sort(#4085 )
Co-authored-by: goodm2 <4qjpngu8mem8cz>
2021-02-23 10:02:30 +01:00
Matthew
81c46dfd55
[mypy] Add/fix type annotations for quick_sort( #4085 ) ( #4215 )
...
Co-authored-by: goodm2 <4qjpngu8mem8cz>
2021-02-20 23:10:23 +01:00
MarineJoker
78ddb46066
Quick sort with lomuto partition ( #3875 )
...
* add quick sort algorithm with Lomuto partition
* fix(lomuto_partition): fix snake_case
2021-02-17 15:28:50 +01:00
Ocean Monjur
f66325a01b
odd_even_sort.py ( #4199 )
...
* odd_even_sort.py
* Update odd_even_sort.py
* Update odd_even_sort.py
2021-02-11 17:49:53 +01:00
Abdeldjaouad Nusayr Medakene
4903a65779
Create slowsort.py ( #3865 )
...
* Create slowsort.py
added slowsort algorithm implementation to sorts
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
* Update slowsort.py
2021-02-09 17:13:48 +01:00
Du Yuanchao
53371b2381
Optimization for shell sort ( #4038 )
...
* fixed shell sort
* udpate code style
* Update sorts/shell_sort.py
Co-authored-by: John Law <johnlaw.po@gmail.com >
Co-authored-by: John Law <johnlaw.po@gmail.com >
2020-12-18 10:39:51 +01:00
Jogendra Singh
c359768e25
Update bitonic_sort with type hints, doctest, snake_case names ( #4016 )
...
* Updated input
* Fix pre-commit error
* Add type hints, doctests, black, snake_case
Co-authored-by: Dhruv Manilawala <dhruvmanila@gmail.com >
2020-12-09 11:38:49 +05:30
Dhruv Manilawala
f8b2c43fda
Fix pre-commit error on master ( #3992 )
...
* Update pigeon_sort.py
* updating DIRECTORY.md
* Add type hints and return annotation
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-11-30 21:03:29 +05:30
wuyudi
07a4ce9fb8
Update pigeon_sort.py ( #2359 )
...
* Update pigeon_sort.py
* Update pigeon_sort.py
* Update pigeon_sort.py
2020-11-30 20:29:23 +05:30
YeonJeongLee00
2b50aaf2d3
Create intro_sort.py ( #3877 )
...
* Create intro_sort.py
* modified intro_sort.py
* add doctest
* modified code
black intro_sort.py
* add more test
* Update intro_sort.py
added doctest, modified code
* black intro_sort.py
* add type hint
* modified code
2020-11-25 09:54:31 +01:00
Marcos Vinicius
a1e9656eca
Hacktoberfest: adding doctest to radix_sort.py file ( #2779 )
...
* adding doctest to radix_sort.py file
* fixup! Format Python code with psf/black push
* Update radix_sort.py
* Update radix_sort.py
* fixup! Format Python code with psf/black push
* Update radix_sort.py
* line
* fix tests
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
Co-authored-by: John Law <johnlaw.po@gmail.com >
2020-10-29 11:09:39 +08:00
JoaoVictorNascimento
79d57552aa
Add Patience Sort ( #3469 )
...
* Add Patience Sort
* fix code for pre-commit
* Fix params def
* Adding new line at end of file
* Remove Trailing Whitespace
* Adding space between the methods of the Stack class
* Removing Trailing Whitespace
* Ordering Imports
* Adding url patience sort
Co-authored-by: jvnascimento <nascimento783@gmail.com >
2020-10-18 23:44:19 +02:00
Christian Clauss
2e90debab3
Tighten up quicksort() ( #3319 )
...
* Tighten up quicksort()
* updating DIRECTORY.md
* str does not support .pop()
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-10-15 15:07:34 +02:00
Mozartus
f0033f87e0
Create natural_sort.py ( #3286 )
...
* add natural_sort.py
* fix doctest
* add 're' to requirements.txt and fix spelling errors
* delete 're' from requirements.txt
* fixing linting errors
* Update sorts/natural_sort.py
Co-authored-by: Christian Clauss <cclauss@me.com >
* Update sorts/natural_sort.py
Co-authored-by: Christian Clauss <cclauss@me.com >
* Update natural_sort.py
Co-authored-by: Christian Clauss <cclauss@me.com >
2020-10-15 13:45:17 +02:00
Du Yuanchao
43f92490fe
Update insert sort ( #2493 )
...
* delete duplicate file
update insert sort
* rename
* fixed error
* using enumerate()
2020-10-03 20:49:08 +05:30
Du Yuanchao
9b3f7c36d0
Test random input for bubble sort ( #2492 )
2020-10-02 13:55:58 +08:00
Du Yuanchao
2fa009aa53
Fix bucket sort ( #2494 )
...
* fixed bucket sort
* delete blank line
2020-10-01 08:53:42 +08:00
Dhruv
0a42ae9095
Fix all errors mentioned in pre-commit run ( #2512 )
...
* Fix all errors mentioned in pre-commit run:
- Fix end of file
- Remove trailing whitespace
- Fix files with black
- Fix imports with isort
* Fix errors
2020-09-30 10:38:00 +02:00
Lewis Tian
e166350509
Update sorts/quick_sort_3_partition.py ( #2507 )
...
* Update sorts/quick_sort_3partition.py
Another quick sort algorithm, returns a new sorted list
* Update sorts/quick_sort_3_partition.py
rename quick_sort_3partition to quick_sort_3part
* Update sorts/quick_sort_3_partition.py
rename quick_sort_3part to three_way_radix_quicksort
Three-way radix quicksort:
https://en.wikipedia.org/wiki/Quicksort#Three-way_radix_quicksort
First divide the list into three parts.
Then recursively sort the "less than" and "greater than" partitions.
* Update sorts/quick_sort_3_partition.py
Co-authored-by: Christian Clauss <cclauss@me.com >
Co-authored-by: Christian Clauss <cclauss@me.com >
2020-09-29 13:55:48 +02:00
Dhruv
48357cea5b
Add __init__.py files in all the directories ( #2503 )
2020-09-28 19:42:36 +02:00
Guillaume Rochedix
f564c9d7c6
Wiggle sort ( #2419 )
...
* wiggle sort : type hint + doctest
* fixed function name in docstring
* correction
2020-09-25 09:18:00 +02:00
Christian Clauss
9200a2e543
from __future__ import annotations ( #2464 )
...
* from __future__ import annotations
* fixup! from __future__ import annotations
* fixup! from __future__ import annotations
* fixup! Format Python code with psf/black push
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-09-23 13:30:13 +02:00
Christian Clauss
363858ef3b
hyphen_files = [file for file in filepaths if "-" in file] ( #2447 )
...
* hyphen_files = [file for file in filepaths if "-" in file]
* updating DIRECTORY.md
* Rename recursive-quick-sort.py to recursive_quick_sort.py
* updating DIRECTORY.md
* Rename aho-corasick.py to aho_corasick.py
* updating DIRECTORY.md
* Rename polynom-for-points.py to polynom_for_points.py
* updating DIRECTORY.md
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-09-19 07:13:10 +02:00
Du Yuanchao
4d0a8f2355
Optimized recursive_bubble_sort ( #2410 )
...
* optimized recursive_bubble_sort
* Fixed doctest error due whitespace
* reduce loop times for optimization
* fixup! Format Python code with psf/black push
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-09-10 10:31:26 +02:00
小么小儿郎EL
80daa5750a
Fix bugs and add related tests ( #2375 )
2020-08-31 18:55:56 +02:00
wuyudi
cf385ad7ef
Update merge_sort.py ( #2356 )
...
* Update merge_sort.py
* Update merge_sort.py
2020-08-27 09:45:03 +02:00
Christian Clauss
ee914c751c
Delete sleep_sort.py ( #2352 )
...
* Delete sleep_sort.py
A silly algorithm designed to waste time. #2350 demonstrates that it is a 20+ second denial of service attack on every Travis CI run that we do.
* fixup! Format Python code with psf/black push
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-08-25 15:48:04 +02:00
Guillaume Rochedix
ee28deea4a
Insertion sort : type hint, docstring ( #2327 )
...
* insertion sort : docstring, type hinting
* Update insertion_sort.py
Co-authored-by: Christian Clauss <cclauss@me.com >
2020-08-23 04:35:54 +02:00
Guillaume Rochedix
fcc8a28c31
Gnome sort : type hints, docstrings, doctests ( #2307 )
...
* gnome_sort : type hints, docstring, doctests
* !Gadeimnoprstu
Co-authored-by: Christian Clauss <cclauss@me.com >
2020-08-14 22:00:08 +02:00
ryuta69
9ec71cbdda
Add merge insertion sort ( #2211 )
...
* Add merge insertion sort
* Fix python naming conventions
* Add wikipedia link
* Add type hint
* Fix python to python3
Co-authored-by: Christian Clauss <cclauss@me.com >
* Refactor doubled process in if-condition into one outside of if-condition
Co-authored-by: Christian Clauss <cclauss@me.com >
* Refactor make python3 prior to python
Co-authored-by: Christian Clauss <cclauss@me.com >
* Fix name of is_surplus into has_last_odd_item
* Add comment
* Fix long comment to shorten
Co-authored-by: Christian Clauss <cclauss@me.com >
2020-07-20 22:42:08 +05:30
Christian Clauss
5f4da5d616
isort --profile black . ( #2181 )
...
* updating DIRECTORY.md
* isort --profile black .
* Black after
* updating DIRECTORY.md
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-07-06 09:44:19 +02:00
mateuszz0000
b0c3c0fbf6
Typehints + refactor ( #2154 )
2020-06-25 09:48:52 +02:00
mateuszz0000
9e2206e5fb
Added doctests to OddEvenTraposition ( #2152 )
...
* Added doctests
* Change __main__ content
2020-06-25 08:56:57 +02:00
Christian Clauss
5b6ebf8f12
Add doctests to radix_sort() ( #2148 )
...
* Add doctests to radix_sort()
* fixup! Format Python code with psf/black push
* Update radix_sort.py
* updating DIRECTORY.md
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-06-23 15:37:24 +02:00
mateuszz0000
d7a75da8ef
Added doctests to bucket sort ( #2079 )
...
* Added doctests to bucket sort
* Missing typehint
* Wrap long lines
* updating DIRECTORY.md
* Update bucket_sort.py
* updating DIRECTORY.md
* Update bucket_sort.py
Co-authored-by: Christian Clauss <cclauss@me.com >
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com >
2020-06-17 09:42:44 +02:00