allalgorithms-python

Insertion Sort

Insertion sort is a simple sorting algorithm that builds the final sorted array (or list) one item at a time. It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort, or merge sort.

Install

pip install allalgorithms

Usage

from allalgorithms.sorting import insertion_sort

arr = [77, 2, 10, -2, 1, 7]

print(insertion_sort(arr))
# -> [-2, 1, 2, 7, 10, 77]

API

insertion_sort(array)

Returns a sorted array

Params:
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy