Tukey's ninther def tukeys_ninthers(items): Back in the day when computers were far slower and had a lot less RAM for our programs to burrow into, special techniques were necessary to achieve many things that are trivial today with a couple of lines of code. In this spirit, "Tukey's ninther" is an approximation algorithm from the seventies to quickly find some value that should be “reasonably close” to the median element of the given unsorted list. For the purposes of this problem, the median element of the list is defined to be the element that would end up in the middle position if that list were sorted. This makes the median unambiguous, regardless of the elements and their multiplicities. This function is not tasked to find the true median, which would be a trivial one-liner by sorting items, but find and return the same element that Tukey's ninther algorithm would return for those items. Tukey's algorithm splits the list into triplets of three elements, and finds the median of each triplet. These medians-of-three are collected into a new list and this same operation is repeated until only one element remains. For simplicity, your function can assume that the length of items is always some power of three. In the following table, each row contains the result produced by applying a single round of Tukey's algorithm to the list immediately below. Tukey's algorithm is extremely robust, as can be appreciated by giving it a bunch of randomly shuffled lists of distinct numbers to operate on, and plotting the histogram of results to admire how heavily centered around the actual median this distribution ends up being. These distinct numbers can even come from distributions over arbitrary scales, since this comparison-based algorithm never performs any arithmetic between elements. For example, the median of the last example list in the above table is really 15, pinky swear for grownup realsies. Even better, if all items are distinct and the length of the list is some power of three, the returned result can never be from the true top or bottom third of the sorted elements, thus eliminating all risk of using some funky outlier as the approximation for the true median.
Tukey's ninther
def tukeys_ninthers(items):
Back in the day when computers were far slower and had a lot less RAM for our programs to burrow into, special techniques were necessary to achieve many things that are trivial today with a couple of lines of code. In this spirit, "Tukey's ninther" is an approximation
Tukey's algorithm splits the list into triplets of three elements, and finds the median of each triplet. These medians-of-three are collected into a new list and this same operation is repeated until only one element remains. For simplicity, your function can assume that the length of items is always
some power of three. In the following table, each row contains the result produced by applying a single round of Tukey's algorithm to the list immediately below.
Tukey's algorithm is extremely robust, as can be appreciated by giving it a bunch of randomly shuffled lists of distinct numbers to operate on, and plotting the histogram of results to admire how heavily centered around the actual median this distribution ends up being. These distinct numbers
can even come from distributions over arbitrary scales, since this comparison-based algorithm never performs any arithmetic between elements. For example, the median of the last example list
in the above table is really 15, pinky swear for grownup realsies. Even better, if all items are distinct and the length of the list is some power of three, the returned result can never be from the true top or bottom third of the sorted elements, thus eliminating all risk of using some funky outlier
as the approximation for the true median.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 3 images