enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. In-place algorithm - Wikipedia

    en.wikipedia.org/wiki/In-place_algorithm

    As another example, many sorting algorithms rearrange arrays into sorted order in-place, including: bubble sort, comb sort, selection sort, insertion sort, heapsort, and Shell sort. These algorithms require only a few pointers, so their space complexity is O(log n). [1] Quicksort operates in-place on the data to be sorted.

  3. Selection sort - Wikipedia

    en.wikipedia.org/wiki/Selection_sort

    In computer science, selection sort is an in-place comparison sorting algorithm. It has a O ( n 2 ) time complexity , which makes it inefficient on large lists, and generally performs worse than the similar insertion sort .

  4. Sorting algorithm - Wikipedia

    en.wikipedia.org/wiki/Sorting_algorithm

    A kind of opposite of a sorting algorithm is a shuffling algorithm. These are fundamentally different because they require a source of random numbers. Shuffling can also be implemented by a sorting algorithm, namely by a random sort: assigning a random number to each element of the list and then sorting based on the random numbers.

  5. Shellsort - Wikipedia

    en.wikipedia.org/wiki/Shellsort

    Shellsort, also known as Shell sort or Shell's method, is an in-place comparison sort. It can be seen as either a generalization of sorting by exchange (bubble sort) or sorting by insertion (insertion sort). [3] The method starts by sorting pairs of elements far apart from each other, then progressively reducing the gap between elements to be ...

  6. Category:Sorting algorithms - Wikipedia

    en.wikipedia.org/wiki/Category:Sorting_algorithms

    العربية; বাংলা; Čeština; Dansk; الدارجة; Deutsch; Eesti; Ελληνικά; Español; Esperanto; فارسی; Français; 한국어; Հայերեն

  7. Cycle sort - Wikipedia

    en.wikipedia.org/wiki/Cycle_sort

    Cycle sort is an in-place, unstable sorting algorithm, a comparison sort that is theoretically optimal in terms of the total number of writes to the original array, unlike any other in-place sorting algorithm.

  8. Interpolation sort - Wikipedia

    en.wikipedia.org/wiki/Interpolation_sort

    The in-place interpolation tag sort is an in-place algorithm of interpolation sort. In-place Interpolation Tag Sort can achieve sorting by only N times of swapping by maintaining N bit tags; however, the array to be sorted must be a continuous integer sequence and not repeated, or the series is completely evenly distributed to approximate The ...

  9. Smoothsort - Wikipedia

    en.wikipedia.org/wiki/Smoothsort

    In computer science, smoothsort is a comparison-based sorting algorithm.A variant of heapsort, it was invented and published by Edsger Dijkstra in 1981. [1] Like heapsort, smoothsort is an in-place algorithm with an upper bound of O(n log n) operations (see big O notation), [2] but it is not a stable sort.