nltk.misc.sort module

This module provides a variety of list sorting algorithms, to illustrate the many different algorithms (recipes) for solving a problem, and how to analyze algorithms experimentally.

nltk.misc.sort.bubble(a)[source]

Bubble Sort: compare adjacent elements of the list left-to-right, and swap them if they are out of order. After one pass through the list swapping adjacent items, the largest item will be in the rightmost position. The remainder is one element smaller; apply the same method to this list, and so on.

nltk.misc.sort.demo()[source]
nltk.misc.sort.merge(a)[source]

Merge Sort: split the list in half, and sort each half, then combine the sorted halves.

nltk.misc.sort.quick(a)[source]
nltk.misc.sort.selection(a)[source]

Selection Sort: scan the list to find its smallest element, then swap it with the first element. The remainder of the list is one element smaller; apply the same method to this list, and so on.