Search:

Type: Posts; User: Adak

Search: Search took 0.13 seconds.

  1. Replies
    5
    Views
    11,076

    If (low == high) return; Will prevent a...

    If (low == high)
    return;


    Will prevent a crash from an empty array, providing hi is the last index of the array, with good data to be sorted.

    Before BASIC supported recursion - back when...
  2. Replies
    5
    Views
    11,076

    The biggest improvement to Quicksort that I know...

    The biggest improvement to Quicksort that I know of, is to add Insertion sort (and calls to it), when the sub arrays are small (say 15 to 60 or so, depending on your own system).

    imo, no sorter is...
Results 1 to 2 of 2