Pancake sorting
Template:Short description Template:Use mdy dates
Pancake sorting is the mathematical problem of sorting a disordered stack of pancakes in order of size when a spatula can be inserted at any point in the stack and used to flip all pancakes above it. A pancake number is the minimum number of flips required for a given number of pancakes. In this form, the problem was first discussed by American geometer Jacob E. Goodman.<ref>Template:Cite news</ref> A variant of the problem is concerned with burnt pancakes, where each pancake has a burnt side and all pancakes must, in addition, end up with the burnt side on bottom.
All sorting methods require pairs of elements to be compared. For the traditional sorting problem, the usual problem studied is to minimize the number of comparisons required to sort a list. The number of actual operations, such as swapping two elements, is then irrelevant. For pancake sorting problems, in contrast, the aim is to minimize the number of operations, where the only allowed operations are reversals of the elements of some prefix of the sequence. Now, the number of comparisons is irrelevant.
The pancake problemsEdit
The original pancake problemEdit
The minimum number of flips required to sort any stack of Template:Math pancakes has been shown to lie between Template:Math and Template:Math (approximately 1.07n and 1.64n), but the exact value is not known.<ref>Template:Cite book</ref>
The simplest pancake sorting algorithm performs at most Template:Math flips. In this algorithm, a kind of selection sort, we bring the largest pancake not yet sorted to the top with one flip; take it down to its final position with one more flip; and repeat this process for the remaining pancakes.
In 1979, Bill Gates and Christos Papadimitriou<ref name=Gates1979/> gave a lower bound of Template:Math (approximately 1.06n) flips and an upper bound of Template:Math. The upper bound was improved, thirty years later, to Template:Math by a team of researchers at the University of Texas at Dallas, led by Founders Professor Hal Sudborough.<ref name="Sudborough">{{#invoke:citation/CS1|citation |CitationClass=web }}</ref><ref>Template:Cite journal</ref>
In 2011, Laurent Bulteau, Guillaume Fertin, and Irena Rusu<ref>Template:Cite journal</ref> proved that the problem of finding the shortest sequence of flips for a given stack of pancakes is NP-hard, thereby answering a question that had been open for over three decades.
The burnt pancake problemEdit
In a variation called the burnt pancake problem, the bottom of each pancake in the pile is burnt, and the sort must be completed with the burnt side of every pancake down. It is a signed permutation, and if a pancake i is "burnt side up" a negative element i` is put in place of i in the permutation. In 2008, a group of undergraduates built a bacterial computer that can solve a simple example of the burnt pancake problem by programming E. coli to flip segments of DNA which are analogous to burnt pancakes. DNA has an orientation (5' and 3') and an order (promoter before coding). Even though the processing power expressed by DNA flips is low, the high number of bacteria in a culture provides a large parallel computing platform. The bacteria report when they have solved the problem by becoming antibiotic resistant.<ref>Template:Cite journal</ref>
The pancake problem on stringsEdit
The discussion above presumes that each pancake is unique, that is, the sequence on which the prefix reversals are performed is a permutation. However, "strings" are sequences in which a symbol can repeat, and this repetition may reduce the number of prefix reversals required to sort. Chitturi and Sudborough (2010) and Hurkens et al. (2007) independently showed that the complexity of transforming a compatible string into another with the minimum number of prefix reversals is NP-complete. They also gave bounds for the same. Hurkens et al. gave an exact algorithm to sort binary and ternary strings. Chitturi<ref name=":0">Template:Cite journal</ref> (2011) proved that the complexity of transforming a compatible signed string into another with the minimum number of signed prefix reversals—the burnt pancake problem on strings—is NP-complete.
HistoryEdit
The pancake sorting problem was first posed by Jacob E. Goodman, writing under the pseudonym "Harry Dweighter" ("harried waiter").<ref>Template:Citation </ref>
Although seen more often as an educational device, pancake sorting also appears in applications in parallel processor networks, in which it can provide an effective routing algorithm between processors.<ref>Template:Cite journal.</ref><ref>Template:Cite book.</ref>
The problem is notable as the topic of the only well-known mathematics paper by Microsoft founder Bill Gates (as William Gates), entitled "Bounds for Sorting by Prefix Reversal" and co-authored with Christos Papadimitriou. Published in 1979, it describes an efficient algorithm for pancake sorting.<ref name=Gates1979>Template:Cite journal</ref> In addition, the most notable paper published by Futurama co-creator David X. Cohen (as David S. Cohen), co-authored with Manuel Blum, concerned the burnt pancake problem.<ref>Template:Cite journal</ref>
The connected problems of signed sorting by reversals and sorting by reversals were also studied more recently. Whereas efficient exact algorithms have been found for the signed sorting by reversals,<ref>Template:Cite journal</ref> the problem of sorting by reversals has been proven to be hard even to approximate to within certain constant factor,<ref>Template:Cite journal</ref> and also proven to be approximable in polynomial time to within the approximation factor 1.375.<ref>Template:Cite journal</ref>
Pancake graphsEdit
{{#invoke:Labelled list hatnote|labelledList|Main article|Main articles|Main page|Main pages}} An n-pancake graph is a graph whose vertices are the permutations of n symbols from 1 to n and its edges are given between permutations transitive by prefix reversals. It is a regular graph with n! vertices, its degree is n−1. The pancake sorting problem and the problem to obtain the diameter of the pancake graph are equivalent.<ref name="pancake17">Template:Cite conference</ref>
The pancake graph of dimension n, Pn can be constructed recursively from n copies of Pn−1, by assigning a different element from the set {1, 2, …, n} as a suffix to each copy.
Their girth:
- <math>g(P_n) = 6 \text{, if } n>2</math>.
The γ(Pn) genus of Pn is:<ref name="ongenus">Template:Cite journal</ref>
- <math>n!\left( \frac{n-4}{6} \right)+1 \le \gamma(P_n) \le n!\left( \frac{n-3}{4} \right)-\frac{n}{2}+1 </math>
Since pancake graphs have many interesting properties such as symmetric and recursive structures, small degrees and diameters compared against the size of the graph, much attention is paid to them as a model of interconnection networks for parallel computers.<ref>Template:Cite journal</ref><ref>Template:Cite journal</ref><ref>Template:Cite journal</ref> When we regard the pancake graphs as the model of the interconnection networks, the diameter of the graph is a measure that represents the delay of communication.<ref>Template:Cite book</ref><ref>Template:Cite book</ref>
The pancake graphs are Cayley graphs (thus are vertex-transitive) and are especially attractive for parallel processing. They have sublogarithmic degree and diameter, and are relatively sparse (compared to e.g. hypercubes).<ref name="ongenus"/>
AlgorithmEdit
An example of the pancake sorting algorithm is given below in Python. The code is similar to bubble sort or selection sort. <syntaxhighlight lang="python3" line="1"> def flip(arr, k: int) -> None:
left = 0 while left < k: arr[left], arr[k] = arr[k], arr[left] k -= 1 left += 1
def max_index(arr, k: int) -> int:
index = 0 for i in range(k): if arr[i] > arr[index]: index = i return index
def pancake_sort(arr) -> None:
n = len(arr) while n > 1: maxidx = max_index(arr, n) if maxidx != n - 1: if maxidx != 0: flip(arr, maxidx) flip(arr, n - 1) n -= 1
arr = [15, 8, 9, 1, 78, 30, 69, 4, 10] pancake_sort(arr) print(arr) </syntaxhighlight>
Related integer sequencesEdit
Number of stacks of given height Template:Math that require unique flips Template:Math to get sorted Height
Template:MathTemplate:Math 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 1 2 1 1 3 1 2 2 1 4 1 3 6 11 3 5 1 4 12 35 48 20 6 1 5 20 79 199 281 133 2 7 1 6 30 149 543 1357 1903 1016 35 8 1 7 42 251 1191 4281 10561 15011 8520 455 9 1 8 56 391 2278 10666 38015 93585 132697 79379 5804 10 1 9 72 575 3963 22825 106461 377863 919365 1309756 814678 73232 11 1 10 90 809 6429 43891 252737 1174766 4126515 9981073 14250471 9123648 956354 6 12 1 11 110 1099 9883 77937 533397 3064788 14141929 49337252 118420043 169332213 111050066 13032704 167 13 1 12 132 1451 14556 130096 1030505 7046318 40309555 184992275 639783475 1525125357 2183056566 1458653648 186874852 2001
Sequences from The Online Encyclopedia of Integer Sequences:
- Template:OEIS2C – maximum number of flips
- Template:OEIS2C – number of stacks requiring the maximum number of flips (above)
- Template:OEIS2C – maximum number of flips for a "burnt" stack
- Template:OEIS2C – the number of flips for a sorted "burnt-side-on-top" stack
- Template:OEIS2C – the above triangle, read by rows
ReferencesEdit
Further readingEdit
- Template:Cite journal
- Template:Cite journal
- Template:Cite journal
- Template:Cite journal
- Template:Cite journal
External linksEdit
- Cut-the-Knot: Flipping pancakes puzzle, including a Java applet for the pancake problem and some discussion.
- Douglas B. West's "The Pancake Problems"
- {{#invoke:Template wrapper|{{#if:|list|wrap}}|_template=cite web
|_exclude=urlname, _debug, id |url = https://mathworld.wolfram.com/{{#if:PancakeSorting%7CPancakeSorting.html}} |title = Pancake Sorting |author = Weisstein, Eric W. |website = MathWorld |access-date = |ref = Template:SfnRef }}