absfuyu.sort module
Absfuyu: Sort
Sort Module
Version: 5.1.0 Date updated: 10/03/2025 (dd/mm/yyyy)
- absfuyu.sort.selection_sort(iterable: list, reverse: bool = False) list [source]
Sort the list with selection sort (bubble sort) algorithm
- Parameters:
iterable (list) – List that want to be sorted
reverse (bool) –
ifTrue
: sort in descending orderifFalse
: sort in ascending order(default:False
)
- Returns:
sorted list
- Return type:
list
- absfuyu.sort.insertion_sort(iterable: list) list [source]
Sort the list with insertion sort algorithm
- Parameters:
iterable (list) – List that want to be sorted
- Returns:
sorted list (ascending order)
- Return type:
list