mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-11 07:07:15 +08:00
Format docs (#7821)
* Reformat docs for odd_even_sort.py * Fix docstring formatting * Apply suggestions from code review Co-authored-by: Caeden Perelli-Harris <caedenperelliharris@gmail.com> Co-authored-by: Caeden Perelli-Harris <caedenperelliharris@gmail.com>
This commit is contained in:
@ -1,10 +1,15 @@
|
||||
"""For reference
|
||||
"""
|
||||
Odd even sort implementation.
|
||||
|
||||
https://en.wikipedia.org/wiki/Odd%E2%80%93even_sort
|
||||
"""
|
||||
|
||||
|
||||
def odd_even_sort(input_list: list) -> list:
|
||||
"""this algorithm uses the same idea of bubblesort,
|
||||
"""
|
||||
Sort input with odd even sort.
|
||||
|
||||
This algorithm uses the same idea of bubblesort,
|
||||
but by first dividing in two phase (odd and even).
|
||||
Originally developed for use on parallel processors
|
||||
with local interconnections.
|
||||
|
Reference in New Issue
Block a user