Sorting algorithms/Pancake sort: Difference between revisions

m
m (→‎{{header|REXX}}: added an optimization.)
m (→‎{{header|Wren}}: Minor tidy)
 
(13 intermediate revisions by 8 users not shown)
Line 31:
{{trans|Python}}
 
<langsyntaxhighlight lang="11l">V tutor = 1B
 
F pancakesort(&data)
Line 54:
print(‘Original List: ’data.join(‘ ’))
pancakesort(&data)
print(‘Pancake Sorted List: ’data.join(‘ ’))</langsyntaxhighlight>
 
{{out}}
Line 74:
=={{header|AArch64 Assembly}}==
{{works with|as|Raspberry Pi 3B version Buster 64 bits}}
<syntaxhighlight lang="aarch64 assembly">
<lang AArch64 Assembly>
/* ARM assembly AARCH64 Raspberry PI 3B */
/* program mergeSort64.s */
Line 292:
/* for this file see task include a file in language AArch64 assembly */
.include "../includeARM64.inc"
</syntaxhighlight>
</lang>
<pre>
Value : -5
Line 308:
sorted in +17 flips
Table sorted.
</pre>
 
=={{header|Action!}}==
<syntaxhighlight lang="action!">PROC PrintArray(INT ARRAY a INT size)
INT i
 
Put('[)
FOR i=0 TO size-1
DO
IF i>0 THEN Put(' ) FI
PrintI(a(i))
OD
Put(']) PutE()
RETURN
 
PROC Flip(INT ARRAY a INT last)
INT i,n,tmp
 
n=(last-1)/2
FOR i=0 TO n
DO
tmp=a(i)
a(i)=a(last-i)
a(last-i)=tmp
OD
RETURN
 
PROC PancakeSort(INT ARRAY a INT size)
INT i,j,maxpos
 
i=size-1
WHILE i>=0
DO
maxpos=i
FOR j=0 TO i-1
DO
IF a(j)>a(maxpos) THEN
maxpos=j
FI
OD
 
IF maxpos#i THEN
IF maxpos#0 THEN
Flip(a,maxpos)
FI
Flip(a,i)
FI
i==-1
OD
RETURN
 
PROC Test(INT ARRAY a INT size)
PrintE("Array before sort:")
PrintArray(a,size)
PancakeSort(a,size)
PrintE("Array after sort:")
PrintArray(a,size)
PutE()
RETURN
 
PROC Main()
INT ARRAY
a(10)=[1 4 65535 0 3 7 4 8 20 65530],
b(21)=[10 9 8 7 6 5 4 3 2 1 0
65535 65534 65533 65532 65531
65530 65529 65528 65527 65526],
c(8)=[101 102 103 104 105 106 107 108],
d(12)=[1 65535 1 65535 1 65535 1
65535 1 65535 1 65535]
Test(a,10)
Test(b,21)
Test(c,8)
Test(d,12)
RETURN</syntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Pancake_sort.png Screenshot from Atari 8-bit computer]
<pre>
Array before sort:
[1 4 -1 0 3 7 4 8 20 -6]
Array after sort:
[-6 -1 0 1 3 4 4 7 8 20]
 
Array before sort:
[10 9 8 7 6 5 4 3 2 1 0 -1 -2 -3 -4 -5 -6 -7 -8 -9 -10]
Array after sort:
[-10 -9 -8 -7 -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9 10]
 
Array before sort:
[101 102 103 104 105 106 107 108]
Array after sort:
[101 102 103 104 105 106 107 108]
 
Array before sort:
[1 -1 1 -1 1 -1 1 -1 1 -1 1 -1]
Array after sort:
[-1 -1 -1 -1 -1 -1 1 1 1 1 1 1]
</pre>
 
=={{header|Ada}}==
 
<langsyntaxhighlight Adalang="ada">with Ada.Text_IO;
procedure Pancake_Sort is
generic
Line 356 ⟶ 454:
end loop;
Ada.Text_IO.New_Line;
end Pancake_Sort;</langsyntaxhighlight>
 
Output:
Line 363 ⟶ 461:
=={{header|ALGOL 68}}==
{{trans|Euphoria}}
<langsyntaxhighlight lang="algol68">PROC flip = ([]INT s, INT n) []INT:
BEGIN
[UPB s]INT ss := s;
Line 404 ⟶ 502:
printf (($"unsorted: "10(g(4) )l$, s));
printf (($"sorted: "10(g(4) )l$, pancake sort(s)))
</syntaxhighlight>
</lang>
{{out}}
<pre>Pancake sort demonstration
Line 414 ⟶ 512:
Algorithm gleaned from [[Sorting_algorithms/Pancake_sort#Phix|Phix]] and that from [[Sorting_algorithms/Pancake_sort#Euphoria|Euphoria]]
 
<langsyntaxhighlight lang="applescript">on pancake_sort(aList)
script o
property lst : aList
Line 466 ⟶ 564:
set output to "Before: {" & pre & ("}" & linefeed & "After: {" & post & "}")
set AppleScript's text item delimiters to astid
return output</langsyntaxhighlight>
 
{{output}}
<langsyntaxhighlight lang="applescript">"Before: {23, 72, 40, 43, 91, 38, 23, 58, 26, 59, 12, 18, 27, 39, 69, 74, 11, 41, 3, 40}
After: {3, 11, 12, 18, 23, 23, 26, 27, 38, 39, 40, 40, 41, 43, 58, 59, 69, 72, 74, 91}"</langsyntaxhighlight>
 
=={{header|ARM Assembly}}==
{{works with|as|Raspberry Pi}}
<syntaxhighlight lang="arm assembly">
<lang ARM Assembly>
/* ARM assembly Raspberry PI */
/* program pancakeSort.s */
Line 675 ⟶ 773:
.include "../affichage.inc"
 
</syntaxhighlight>
</lang>
 
=={{header|Arturo}}==
 
<langsyntaxhighlight lang="rebol">pancakeSort: function [items][
arr: new items
len: size arr
Line 696 ⟶ 794:
]
 
print pancakeSort [3 1 2 8 5 7 9 4 6]</langsyntaxhighlight>
 
{{out}}
Line 703 ⟶ 801:
 
=={{header|AutoHotkey}}==
<langsyntaxhighlight lang="autohotkey">;---------------------------------------------------------------------------
Loop { ; test loop
;---------------------------------------------------------------------------
Line 752 ⟶ 850:
Return, List
}
</syntaxhighlight>
</lang>
 
=={{header|BASIC}}==
Line 758 ⟶ 856:
{{works with|QBasic}}
 
<langsyntaxhighlight lang="qbasic">RANDOMIZE TIMER
 
DIM nums(9) AS INTEGER
Line 803 ⟶ 901:
PRINT
END IF
NEXT</langsyntaxhighlight>
 
Sample output:
Line 824 ⟶ 922:
This is a graphical variation of the above.
 
<langsyntaxhighlight lang="qbasic">RANDOMIZE TIMER
 
CONST delay = .1 'controls display speed
Line 878 ⟶ 976:
ttmp = TIMER
DO WHILE TIMER < ttmp + delay: LOOP
RETURN</langsyntaxhighlight>
 
Sample output:
Line 886 ⟶ 984:
=={{header|Batch File}}==
{{trans|BASIC}}
<langsyntaxhighlight lang="dos">:: Pancake Sort from Rosetta Code
:: Batch File Implementation
Line 962 ⟶ 1,060:
 
echo DONE^^!
exit /b 0</langsyntaxhighlight>
{{Out}}
<pre>Initial Sequence:
Line 988 ⟶ 1,086:
 
=={{header|BBC BASIC}}==
<langsyntaxhighlight lang="bbcbasic"> DIM test(9)
test() = 4, 65, 2, -31, 0, 99, 2, 83, 782, 1
PROCpancakesort(test())
Line 1,019 ⟶ 1,117:
SWAP a(i%), a(n%-i%)
NEXT
ENDPROC</langsyntaxhighlight>
'''Output:'''
<pre>
Line 1,027 ⟶ 1,125:
=={{header|C}}==
'''The function that sorts:'''
<langsyntaxhighlight lang="c">int pancake_sort(int *list, unsigned int length)
{
//If it's less than 2 long, just return it as sorting isn't really needed...
Line 1,068 ⟶ 1,166:
 
return moves;
}</langsyntaxhighlight>
 
Where do_flip() is a simple function to flip a part of an array:
<langsyntaxhighlight lang="c">void do_flip(int *list, int length, int num)
{
int swap;
Line 1,081 ⟶ 1,179:
list[num]=swap;
}
}</langsyntaxhighlight>
 
'''Testing the function:'''
<langsyntaxhighlight lang="c">int main(int argc, char **argv)
{
//Just need some random numbers. I chose <100
Line 1,103 ⟶ 1,201:
print_array(list, 9);
printf(" - with a total of %d moves\n", moves);
}</langsyntaxhighlight>
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight Clang="c sharp|Cc#">
public static class PancakeSorter
{
Line 1,148 ⟶ 1,246:
}
}
</syntaxhighlight>
</lang>
 
=={{header|C++}}==
<langsyntaxhighlight lang="c">#include <algorithm>
#include <iostream>
#include <iterator>
Line 1,200 ⟶ 1,298:
std::copy(data.begin(), data.end(), std::ostream_iterator<int>(std::cout, " "));
std::cout << "\n";
}</langsyntaxhighlight>Output:<pre>4 10 11 15 14 16 17 1 6 9 3 7 19 2 0 12 5 18 13 8
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 </pre>
 
=={{header|Clojure}}==
<langsyntaxhighlight lang="clojure">
(defn pancake-sort
[arr]
Line 1,215 ⟶ 1,313:
head (reverse torev)]
(cons mx (pancake-sort (concat (drop 1 head) (drop 1 tail))))))))
</syntaxhighlight>
</lang>
 
=={{header|Common Lisp}}==
<langsyntaxhighlight lang="lisp">(defun pancake-sort (seq)
"A destructive version of Pancake Sort that works with either lists or arrays of numbers."
(defun flip (lst index)
Line 1,228 ⟶ 1,326:
(flip lst (1+ index)))
(flip lst i)
finally (return (coerce lst (type-of seq)))))</langsyntaxhighlight>
Output:
<langsyntaxhighlight lang="lisp">CL-USER> (pancake-sort '(6 7 8 9 2 5 3 4 1)) ;list
(1 2 3 4 5 6 7 8 9)
CL-USER> (pancake-sort #(6 7 8 9 2 5 3 4 1)) ;array
#(1 2 3 4 5 6 7 8 9)
CL-USER> (pancake-sort #(6.5 7.5 8 9 2 5 3 4 1.0)) ;array with integer and floating point values
#(1.0 2 3 4 5 6.5 7.5 8 9)</langsyntaxhighlight>
 
=={{header|D}}==
{{trans|Python}}
<langsyntaxhighlight lang="d">import std.stdio, std.algorithm;
 
void pancakeSort(bool tutor=false, T)(T[] data) {
Line 1,262 ⟶ 1,360:
data.pancakeSort!true;
data.writeln;
}</langsyntaxhighlight>
{{out}}
<pre>With: 769248135 doflip 3
Line 1,279 ⟶ 1,377:
 
=={{header|Eiffel}}==
<syntaxhighlight lang="eiffel">
<lang Eiffel>
class
PANCAKE_SORT [G -> COMPARABLE]
Line 1,385 ⟶ 1,483:
 
end
</syntaxhighlight>
</lang>
 
Test:
<syntaxhighlight lang="eiffel">
<lang Eiffel>
class
APPLICATION
Line 1,421 ⟶ 1,519:
 
end
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,431 ⟶ 1,529:
ELENA 5.0 :
{{trans|C#}}
<langsyntaxhighlight lang="elena">import extensions;
extension op
Line 1,497 ⟶ 1,595:
console.printLine("before:", list.asEnumerable());
console.printLine("after :", list.pancakeSort().asEnumerable())
}</langsyntaxhighlight>
{{out}}
<pre>
Line 1,505 ⟶ 1,603:
 
=={{header|Elixir}}==
<langsyntaxhighlight lang="elixir">defmodule Sort do
def pancake_sort(list) when is_list(list), do: pancake_sort(list, length(list))
Line 1,531 ⟶ 1,629:
 
IO.inspect list = Enum.shuffle(1..9)
IO.inspect Sort.pancake_sort(list)</langsyntaxhighlight>
 
{{out}}
Line 1,540 ⟶ 1,638:
 
=={{header|Euphoria}}==
<langsyntaxhighlight lang="euphoria">function flip(sequence s, integer n)
object temp
for i = 1 to n/2 do
Line 1,573 ⟶ 1,671:
 
? s
? pancake_sort(s)</langsyntaxhighlight>
 
Output:
Line 1,581 ⟶ 1,679:
 
=={{header|F_Sharp|F#}}==
<langsyntaxhighlight lang="fsharp">open System
 
let show data = data |> Array.iter (printf "%d ") ; printfn ""
Line 1,599 ⟶ 1,697:
loop partialSort (limit-1)
 
loop items ((Array.length items)-1)</langsyntaxhighlight>
Usage: pancakeSort [|31; 41; 59; 26; 53; 58; 97; 93; 23; 84|] |> show
 
Line 1,609 ⟶ 1,707:
=={{header|Fortran}}==
{{works with|Fortran|90 and later}}
<langsyntaxhighlight lang="fortran">program Pancake_Demo
implicit none
Line 1,645 ⟶ 1,743:
end subroutine
end program Pancake_Demo</langsyntaxhighlight>
Output:
<pre>
Line 1,664 ⟶ 1,762:
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang="freebasic">' version 11-04-2017
' compile with: fbc -s console
' for boundry checks on array's compile with: fbc -s console -exx
Line 1,767 ⟶ 1,865:
Print : Print "hit any key to end program"
Sleep
End</langsyntaxhighlight>
{{out}}
<pre>unsorted -1 -4 1 6 7 5 2 -3 4 -5 -2 -6 0 3 -7
Line 1,788 ⟶ 1,886:
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import "fmt"
Line 1,821 ⟶ 1,919:
a[l], a[r] = a[r], a[l]
}
}</langsyntaxhighlight>
Output:
<pre>
Line 1,830 ⟶ 1,928:
=={{header|Groovy}}==
This formulation of the pancake sort achieves stability by picking the last index (rather than, say, the first) in the remaining sublist that matches the max value of the remaining sublist. Performance is enhanced somewhat by not flipping if the ''flipPoint'' is already at the end of the remaining sublist.
<langsyntaxhighlight lang="groovy">def makeSwap = { a, i, j = i+1 -> print "."; a[[j,i]] = a[[i,j]] }
 
def flip = { list, n -> (0..<((n+1)/2)).each { makeSwap(list, it, n-it) } }
Line 1,845 ⟶ 1,943:
}
list
}</langsyntaxhighlight>
 
Test:
<langsyntaxhighlight lang="groovy">println (pancakeSort([23,76,99,58,97,57,35,89,51,38,95,92,24,46,31,24,14,12,57,78,4]))
println (pancakeSort([88,18,31,44,4,0,8,81,14,78,20,76,84,33,73,75,82,5,62,70,12,7,1]))
println ()
Line 1,856 ⟶ 1,954:
println (pancakeSort([10.0, 10.00, 10, 1]))
println (pancakeSort([10.00, 10, 10.0, 1]))
println (pancakeSort([10.00, 10.0, 10, 1]))</langsyntaxhighlight>
The use of decimals and integers that compare as equal demonstrates, but of course not '''prove''', that the sort is stable.
 
Line 1,871 ⟶ 1,969:
 
=={{header|Haskell}}==
<langsyntaxhighlight lang="haskell">import Data.List
import Control.Arrow
import Control.Monad
Line 1,884 ⟶ 1,982:
dopcs ([],rs) = rs
dopcs ([x],rs) = x:rs
dopcs (xs,rs) = dopcs $ (init &&& (:rs).last ) $ dblflipIt xs</langsyntaxhighlight>
Example:
<langsyntaxhighlight lang="haskell">*Main> dopancakeSort [3,2,1,0,2]
[0,1,2,2,3]</langsyntaxhighlight>
 
=={{header|Haxe}}==
<langsyntaxhighlight lang="haxe">class PancakeSort {
@:generic
inline private static function flip<T>(arr:Array<T>, num:Int) {
Line 1,937 ⟶ 2,035:
Sys.println('Sorted Strings: ' + stringArray);
}
}</langsyntaxhighlight>
 
{{out}}
Line 1,950 ⟶ 2,048:
 
=={{header|Icon}} and {{header|Unicon}}==
<langsyntaxhighlight Iconlang="icon">procedure main() #: demonstrate various ways to sort a list and string
demosort(pancakesort,[3, 14, 1, 5, 9, 2, 6, 3],"qwerty")
pancakeflip := pancakeflipshow # replace pancakeflip procedure with a variant that displays each flip
Line 1,990 ⟶ 2,088:
every writes(" ["|right(!X,4)|" ]\n") # show X
return X
end</langsyntaxhighlight>
 
Note: This example relies on [[Sorting_algorithms/Bubble_sort#Icon| the supporting procedures 'sortop', and 'demosort' in Bubble Sort]]. The full demosort exercises the named sort of a list with op = "numeric", "string", ">>" (lexically gt, descending),">" (numerically gt, descending), a custom comparator, and also a string.
Line 2,019 ⟶ 2,117:
=={{header|J}}==
{{eff note|J|/:~}}
<langsyntaxhighlight Jlang="j">flip=: C.~ C.@i.@-
unsorted=: #~ 1 , [: >./\. 2 >/\ ]
FlDown=: flip 1 + (i. >./)@unsorted
FlipUp=: flip 1 >. [:+/>./\&|.@(< {.)
 
pancake=: FlipUp@FlDown^:_</langsyntaxhighlight>
 
Example use:
 
<langsyntaxhighlight Jlang="j"> (,:pancake) ?~9
1 0 8 7 4 6 3 5 2
0 1 2 3 4 5 6 7 8</langsyntaxhighlight>
 
See the [[Talk:Sorting_algorithms/Pancake_sort#J_implementation|discussion page]] for illustrations of the other words.
Line 2,036 ⟶ 2,134:
=={{header|Java}}==
 
<langsyntaxhighlight lang="java">
public class PancakeSort
{
Line 2,118 ⟶ 2,216:
System.out.println(pancakes);
}
}</langsyntaxhighlight>
 
Example:
<langsyntaxhighlight lang="bash">$ java PancakeSort 1 2 5 4 3 10 9 8 7
flip(0..5): 10 3 4 5 2 1 9 8 7
flip(0..8): 7 8 9 1 2 5 4 3 10
Line 2,136 ⟶ 2,234:
flip(0..4): 7 6 5 4 3 2 1 8 9
flip(0..6): 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 </langsyntaxhighlight>
 
===Using Java 8===
<syntaxhighlight lang="java">
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.stream.IntStream;
 
public final class PancakeSort {
 
public static void main(String[] aArgs) {
List<Integer> numbers = Arrays.asList( 1, 5, 4, 2, 3, 2, 8, 6, 7 );
System.out.println("Initial list: " + numbers);
pancakeSort(numbers);
}
private static void pancakeSort(List<Integer> aList) {
for ( int i = aList.size() - 1; i >= 0; i-- ) {
int index = IntStream.rangeClosed(0, i).boxed().max(Comparator.comparing(aList::get)).get();
if ( index != i ) {
flip(aList, index);
flip(aList, i);
}
}
}
private static void flip(List<Integer> aList, int aIndex) {
if ( aIndex > 0 ) {
Collections.reverse(aList.subList(0, aIndex + 1));
System.out.println("flip 0.." + aIndex + " --> " + aList);
}
}
 
}
</syntaxhighlight>
{{ out }}
<pre>
Initial list: [1, 5, 4, 2, 3, 2, 8, 6, 7]
flip 0..6 --> [8, 2, 3, 2, 4, 5, 1, 6, 7]
flip 0..8 --> [7, 6, 1, 5, 4, 2, 3, 2, 8]
flip 0..7 --> [2, 3, 2, 4, 5, 1, 6, 7, 8]
flip 0..4 --> [5, 4, 2, 3, 2, 1, 6, 7, 8]
flip 0..5 --> [1, 2, 3, 2, 4, 5, 6, 7, 8]
flip 0..2 --> [3, 2, 1, 2, 4, 5, 6, 7, 8]
flip 0..3 --> [2, 1, 2, 3, 4, 5, 6, 7, 8]
flip 0..2 --> [2, 1, 2, 3, 4, 5, 6, 7, 8]
flip 0..1 --> [1, 2, 2, 3, 4, 5, 6, 7, 8]
</pre>
 
=={{header|JavaScript}}==
<langsyntaxhighlight lang="javascript">Array.prototype.pancake_sort = function () {
for (var i = this.length - 1; i >= 1; i--) {
// find the index of the largest element not yet sorted
Line 2,171 ⟶ 2,319:
}
ary = [7,6,5,9,8,4,3,1,2,0]
sorted = ary.concat().pancake_sort();</langsyntaxhighlight>
 
=={{header|jq}}==
{{works with|jq|1.4}}
This version skips the pair of flips if the focal item is already in place.
<langsyntaxhighlight lang="jq">def pancakeSort:
 
def flip(i):
Line 2,197 ⟶ 2,345:
| if ($i == $max) then .
else flip($max) | flip($i)
end ) ;</langsyntaxhighlight>
'''Example''':
<langsyntaxhighlight lang="jq">[range(0;2), null, 1.0, 0.5, [1], [2], {"b":1}, {"a":2}, range(2;4)]
| pancakeSort</langsyntaxhighlight>
 
{{out}}
<langsyntaxhighlight lang="sh">$ jq -M -c -n -f pancake_sort.jq
[null,0,0.5,1,1,2,3,[1],[2],{"a":2},{"b":1}]</langsyntaxhighlight>
 
=={{header|Julia}}==
<syntaxhighlight lang="julia">function pancakesort!(arr::Vector{<:Real})
{{works with|Julia|0.6}}
 
<lang julia>function pancakesort!(arr::Vector{<:Real})
len = length(arr)
if len < 2 return arr end
for i in len:-1:2
j = indmaxfindmax(arr[1:i])[2]
if i == j continue end
arr[1:j] = reverse(arr[1:j])
Line 2,222 ⟶ 2,368:
 
v = rand(-10:10, 10)
println("# unordered: $v\n -> ordered: ", pancakesort!(v))</langsyntaxhighlight>
 
{{out}}
Line 2,229 ⟶ 2,375:
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="kotlin">fun pancakeSort(a: IntArray) {
/** Returns the index of the highest number in the range 0 until n. */
fun indexOfMax(n: Int): Int = (0 until n).maxByOrNull{ a[it] }!!
Line 2,255 ⟶ 2,401:
println("${a.contentToString()} initially")
pancakeSort(a)
}</langsyntaxhighlight>
 
{{out}}
Line 2,275 ⟶ 2,421:
 
=={{header|Lua}}==
<langsyntaxhighlight Lualang="lua">-- Initialisation
math.randomseed(os.time())
numList = {step = 0, sorted = 0}
Line 2,340 ⟶ 2,486:
numList:show()
until numList:isSorted()
</syntaxhighlight>
</lang>
{{out}}
<pre>Initial state: -67 61 80 47 21 74 43 22 66 -66
Line 2,361 ⟶ 2,507:
 
=={{header|Maple}}==
<langsyntaxhighlight Maplelang="maple">flip := proc(arr, i)
local start, temp, icopy;
temp, start, icopy := 0,1,i:
Line 2,390 ⟶ 2,536:
end do:
print(arr);
end proc:</langsyntaxhighlight>
{{Out|Example}}
Input: arr := Array([17,3,72,0,36,2,3,8,40,1]):
Line 2,405 ⟶ 2,551:
 
=={{header|Mathematica}}/{{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica">ClearAll[LMaxPosition, Flip, pancakeSort]
LMaxPosition[a_, n_] := With[{b = Take[a, n]}, First[Ordering[b, -1]]]
SetAttributes[Flip, HoldAll];
Line 2,421 ⟶ 2,567:
a
]
pancakeSort[{6, 7, 8, 9, 2, 5, 3, 4, 1}]</langsyntaxhighlight>
{{out}}
<pre>{9,8,7,6,2,5,3,4,1}
Line 2,433 ⟶ 2,579:
 
=={{header|MATLAB}} / {{header|Octave}}==
<langsyntaxhighlight MATLABlang="matlab">function list = pancakeSort(list)
 
for i = (numel(list):-1:2)
Line 2,460 ⟶ 2,606:
end
end %for
end %pancakeSort</langsyntaxhighlight>
 
Sample Usage:
<langsyntaxhighlight MATLABlang="matlab">>> pancakeSort([4 3 1 5 6 2])
 
ans =
 
6 5 4 3 2 1</langsyntaxhighlight>
 
=={{header|MAXScript}}==
<langsyntaxhighlight MAXScriptlang="maxscript">fn flipArr arr index =
(
local new = #()
Line 2,498 ⟶ 2,644:
return arr
)
)</langsyntaxhighlight>
Output:
<syntaxhighlight lang="maxscript">
<lang MAXScript>
a = for i in 1 to 15 collect random 0 20
#(8, 13, 2, 0, 10, 8, 1, 15, 4, 7, 6, 9, 11, 3, 5)
pancakeSort a
#(0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 10, 11, 13, 15)
</syntaxhighlight>
</lang>
 
=={{header|NetRexx}}==
Sorts integers, decimal numbers and strings because they're all the same to NetRexx.
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref symbols nobinary
 
Line 2,590 ⟶ 2,736:
 
return clist
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,613 ⟶ 2,759:
 
=={{header|Nim}}==
<langsyntaxhighlight lang="nim">import algorithm
 
proc pancakeSort[T](list: var openarray[T]) =
Line 2,638 ⟶ 2,784:
var a = @[4, 65, 2, -31, 0, 99, 2, 83, 782]
pancakeSort a
echo a</langsyntaxhighlight>
Output:
<pre>@[-31, 0, 2, 2, 4, 65, 83, 99, 782]</pre>
 
=={{header|OCaml}}==
<langsyntaxhighlight lang="ocaml">let rec sorted = function
| [] -> (true)
| x::y::_ when x > y -> (false)
Line 2,685 ⟶ 2,831:
print_list res;
Printf.printf " sorted in %d loops\n" n;
;;</langsyntaxhighlight>
 
=={{header|PARI/GP}}==
<langsyntaxhighlight lang="parigp">pancakeSort(v)={
my(top=#v);
while(top>1,
Line 2,707 ⟶ 2,853:
);
v
};</langsyntaxhighlight>
 
=={{header|Pascal}}==
<langsyntaxhighlight lang="pascal">Program PancakeSort (output);
 
procedure flip(var b: array of integer; last: integer);
Line 2,774 ⟶ 2,920:
end;
writeln;
end.</langsyntaxhighlight>
Output:
<pre>:>./PancakeSort
Line 2,784 ⟶ 2,930:
 
=={{header|Perl}}==
<langsyntaxhighlight lang="perl">sub pancake {
my @x = @_;
for my $idx (0 .. $#x - 1) {
Line 2,802 ⟶ 2,948:
@a = pancake(@a);
print "After @a\n";
</syntaxhighlight>
</lang>
Sample output:
<pre>Before 57 37 35 35 22 58 70 53 77 15
Line 2,808 ⟶ 2,954:
 
=={{header|Phix}}==
<!--<langsyntaxhighlight Phixlang="phix">(phixonline)-->
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
Line 2,828 ⟶ 2,974:
<span style="color: #0000FF;">?</span> <span style="color: #000000;">s</span>
<span style="color: #0000FF;">?</span> <span style="color: #000000;">pancake_sort</span><span style="color: #0000FF;">(</span><span style="color: #000000;">s</span><span style="color: #0000FF;">)</span>
<!--</langsyntaxhighlight>-->
{{out}}
<pre>
Line 2,834 ⟶ 2,980:
{1,2,3,4,5,6,7,8,9,10}
</pre>
 
=={{header|Picat}}==
<syntaxhighlight lang="picat">go =>
Nums = [6,7,8,9,2,5,3,4,1],
println(Nums),
Sorted = pancake_sort(Nums),
println(Sorted),
nl.
 
pancake_sort(L) = L =>
T = L.len,
while (T > 1)
Ix = argmax(L[1..T]),
if Ix == 1 then
L := L[1..T].reverse ++ L.slice(T+1),
T := T-1
else
L := L[1..Ix].reverse ++ L.slice(Ix+1)
end
end.
 
% Get the index of the (first) maximal value in L
argmax(L) = MaxIx =>
Max = max(L),
MaxIx = [I : I in 1..L.length, L[I] == Max].first.</syntaxhighlight>
 
{{out}}
<pre>[6,7,8,9,2,5,3,4,1]
[1,2,3,4,5,6,7,8,9]</pre>
 
=={{header|PicoLisp}}==
<langsyntaxhighlight PicoLisplang="picolisp">(de pancake (Lst)
(prog1 (flip Lst (index (apply max Lst) Lst))
(for (L @ (cdr (setq Lst (cdr L))) (cdr L))
(con L (flip Lst (index (apply max Lst) Lst))) ) ) )</langsyntaxhighlight>
Output:
<pre>: (trace 'flip)
Line 2,864 ⟶ 3,039:
 
=={{header|PL/I}}==
<syntaxhighlight lang="pl/i">
<lang PL/I>
pancake_sort: procedure options (main); /* 23 April 2009 */
declare a(10) fixed, (i, n, loc) fixed binary;
Line 2,900 ⟶ 3,075:
 
end pancake_sort;
</syntaxhighlight>
</lang>
Output:
<syntaxhighlight lang="text">
3 9 2 7 10 1 8 5 4 6
6 4 5 8 1 3 9 2 7 10
Line 2,913 ⟶ 3,088:
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
</syntaxhighlight>
</lang>
 
=={{header|PowerShell}}==
<langsyntaxhighlight PowerShelllang="powershell">Function FlipPancake( [Object[]] $indata, $index = 1 )
{
$data=$indata.Clone()
Line 2,953 ⟶ 3,128:
}
 
$l = 100; PancakeSort ( 1..$l | ForEach-Object { $Rand = New-Object Random }{ $Rand.Next( 0, $l - 1 ) } )</langsyntaxhighlight>
 
=={{header|PureBasic}}==
 
<langsyntaxhighlight PureBasiclang="purebasic">If OpenConsole()
Define i, j, k, Loops
Dim Pile(9)
Line 2,999 ⟶ 3,174:
Print(#CRLF$+#CRLF$+"Press ENTER to quit."): Input()
CloseConsole()
EndIf</langsyntaxhighlight>
 
'''Output can look like
Line 3,010 ⟶ 3,185:
=={{header|Python}}==
'''The function:'''
<langsyntaxhighlight lang="python">tutor = False
 
def pancakesort(data):
Line 3,029 ⟶ 3,204:
% ( ' '.join(str(x) for x in data), size ))
data[:size] = reversed(data[:size])
if tutor: print()</langsyntaxhighlight>
'''A test:'''
<langsyntaxhighlight lang="python">if __name__ == '__main__':
import random
 
Line 3,041 ⟶ 3,216:
print('Original List: %r' % ' '.join(data))
pancakesort(data)
print('Pancake Sorted List: %r' % ' '.join(data))</langsyntaxhighlight>
 
'''Sample output:'''
Line 3,058 ⟶ 3,233:
 
=={{header|Quackery}}==
<langsyntaxhighlight Quackerylang="quackery">[ split reverse join ] is flip ( [ n --> [ )
 
[ 0 swap behead swap
Line 3,071 ⟶ 3,246:
[ dup i^ split nip
smallest i^ + flip
i^ flip ] ] is pancakesort ( [ --> [ )</langsyntaxhighlight>
 
'''Testing in Quackery shell:'''
Line 3,085 ⟶ 3,260:
 
=={{header|Racket}}==
<langsyntaxhighlight lang="racket">
#lang racket
 
Line 3,098 ⟶ 3,273:
(pancake-sort (shuffle (range 0 10)))
;; => '(0 1 2 3 4 5 6 7 8 9)
</syntaxhighlight>
</lang>
 
=={{header|Raku}}==
(formerly Perl 6)
<syntaxhighlight lang="raku" perl6line>sub pancake_sort ( @a is copy ) {
my $endpoint = @a.end;
while $endpoint > 0 and not [<] @a {
Line 3,122 ⟶ 3,297:
say 'input = ' ~ @data;
say 'output = ' ~ @data.&pancake_sort;
</syntaxhighlight>
</lang>
 
Output:<pre>input = 6 7 2 1 8 9 5 3 4
Line 3,129 ⟶ 3,304:
 
=={{header|REXX}}==
<langsyntaxhighlight lang="rexx">/*REXX program sorts and displays an array using the pancake sort algorithm. */
call gen /*generate elements in the @. array.*/
call show 'before sort' /*display the BEFORE array elements.*/
Line 3,159 ⟶ 3,334:
end /*j*/
call panFlip ?; call panFlip n
end /*n*/; return</langsyntaxhighlight>
{{out|output|text=&nbsp; when using the internally generated numbers:}}
 
Line 3,250 ⟶ 3,425:
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
pancakeList = [6, 7, 8, 9, 2, 5, 3, 4, 1]
flag = 0
Line 3,280 ⟶ 3,455:
end
return A
</syntaxhighlight>
</lang>
Output:
<pre>
Line 3,290 ⟶ 3,465:
 
=={{header|Ruby}}==
<langsyntaxhighlight lang="ruby">class Array
def pancake_sort!
num_flips = 0
Line 3,311 ⟶ 3,486:
 
p a = (1..9).to_a.shuffle
p a.pancake_sort!</langsyntaxhighlight>
 
'''sample output:'''
Line 3,328 ⟶ 3,503:
 
=={{header|Rust}}==
<langsyntaxhighlight Rustlang="rust">fn pancake_sort<T: Ord>(v: &mut [T]) {
let len = v.len();
// trivial case -- no flips
Line 3,369 ⟶ 3,544:
pancake_sort(&mut strings);
println!("After: {:?}", strings);
}</langsyntaxhighlight>
 
=={{header|Sidef}}==
{{trans|Perl}}
<langsyntaxhighlight lang="ruby">func pancake(a) {
for idx in ^(a.end) {
var min = idx
Line 3,386 ⟶ 3,561:
var arr = 10.of{ 100.irand }
say "Before: #{arr}"
say "After: #{pancake(arr)}"</langsyntaxhighlight>
 
{{out}}
Line 3,396 ⟶ 3,571:
=={{header|Swift}}==
{{trans|Java}}
<langsyntaxhighlight Swiftlang="swift">import Foundation
 
struct PancakeSort {
Line 3,461 ⟶ 3,636:
var a = PancakeSort(arr: arr)
a.sort(arr.count, dir: 1)
println(a.arr)</langsyntaxhighlight>
{{out}}
<pre>
Line 3,479 ⟶ 3,654:
=={{header|Tailspin}}==
Simplest version, bubblesort style
<langsyntaxhighlight lang="tailspin">
templates pancakeSort
@: {stack: $, flips: 0"1"};
sink flip
when <2..> do
@pancakeSort.stack(1..$): $@pancakeSort.stack($..1:-1)...;
'$@pancakeSort.stack;$#10;' -> !OUT::write
@pancakeSort.flips: $@pancakeSort.flips + 1"1";
end flip
sink fixTop
Line 3,499 ⟶ 3,674:
 
[6,7,2,1,8,9,5,3,4] -> pancakeSort -> !OUT::write
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 3,514 ⟶ 3,689:
 
=={{header|Tcl}}==
<langsyntaxhighlight lang="tcl">package require Tcl 8.5
# Some simple helper procedures
proc flip {nlist n} {
Line 3,537 ⟶ 3,712:
}
return $nlist
}</langsyntaxhighlight>
Demonstrate (with debug mode enabled so it prints intermediate states):
<langsyntaxhighlight lang="tcl">puts [pancakeSort {27916 5928 23535 14711 32184 14621 21093 14422 29844 11093} debug]</langsyntaxhighlight>
Output:
<pre>
Line 3,559 ⟶ 3,734:
 
=={{header|Transd}}==
<langsyntaxhighlight lang="scheme">
#lang transd
 
Line 3,576 ⟶ 3,751:
(textout vint "\n")
))
}</langsyntaxhighlight>{{out}}
<pre>
[9, 0, 5, 10, 3, -3, -1, 8, -7, -4, -2, -6, 2, 4, 6, -10, 7, -8, -5, 1, -9]
Line 3,584 ⟶ 3,759:
=={{header|uBasic/4tH}}==
{{trans|C}}
<syntaxhighlight lang="text">PRINT "Pancake sort:"
n = FUNC (_InitArray)
PROC _ShowArray (n)
Line 3,651 ⟶ 3,826:
PRINT
RETURN</langsyntaxhighlight>
 
=={{header|UNIX Shell}}==
Line 3,657 ⟶ 3,832:
This takes advantage of the semi-standard UNIX utility <tt>shuf</tt> to randomize the initial array.
 
<langsyntaxhighlight lang="sh">#!/usr/bin/env bash
main() {
local stack
Line 3,749 ⟶ 3,924:
}
 
main "$@"</langsyntaxhighlight>
 
{{Out}}
Line 3,768 ⟶ 3,943:
 
=={{header|VBA}}==
<syntaxhighlight lang="vb">
<lang vb>
 
'pancake sort
Line 3,836 ⟶ 4,011:
printarray A
End Sub
</syntaxhighlight>
</lang>
 
Sample output:
Line 3,870 ⟶ 4,045:
{{trans|Go}}
{{libheader|Wren-sort}}
<langsyntaxhighlight ecmascriptlang="wren">import "./sort" for Find
 
class Pancake {
Line 3,879 ⟶ 4,054:
flip(r) {
for (l in 0...r) {
var t = _a[.swap(r], l)
_a[r] = _a[l]
_a[l] = t
r = r - 1
}
Line 3,901 ⟶ 4,074:
System.print("unsorted: %(p)")
p.sort()
System.print("sorted : %(p)")</langsyntaxhighlight>
 
{{out}}
Line 3,907 ⟶ 4,080:
unsorted: [31, 41, 59, 26, 53, 58, 97, 93, 23, 84]
sorted : [23, 26, 31, 41, 53, 58, 59, 84, 93, 97]
</pre>
 
=={{header|XPL0}}==
<syntaxhighlight lang "XPL0">proc Show(A, N); \Show items in array A with size N
int A, N, I;
[for I:= 0 to N-1 do
[IntOut(0, A(I)); ChOut(0, ^ )];
CrLf(0);
];
 
proc Sort(A, N); \Pancake sort array A with size N
int A, N, I, J, JMax;
 
proc Flip(K); \Reverse order of array items from 0 to K
int K, L, T;
[L:= 0;
while L < K do
[T:= A(L); A(L):= A(K); A(K):= T; \swap
K:= K-1;
L:= L+1;
];
Show(A, N); \show result of reversed items
];
 
[for I:= N-1 downto 1 do
[JMax:= 0;
for J:= 1 to I do
if A(J) > A(JMax) then JMax:= J;
if JMax < I then
[Flip(JMax);
Flip(I);
];
];
];
 
int A, N;
[A:= [6, 7, 2, 1, 8, 9, 5, 3, 4];
N:= 9;
Show(A, N); \show initial
Sort(A, N);
]</syntaxhighlight>
{{out}}
<pre>
6 7 2 1 8 9 5 3 4
9 8 1 2 7 6 5 3 4
4 3 5 6 7 2 1 8 9
7 6 5 3 4 2 1 8 9
1 2 4 3 5 6 7 8 9
4 2 1 3 5 6 7 8 9
3 1 2 4 5 6 7 8 9
3 1 2 4 5 6 7 8 9
2 1 3 4 5 6 7 8 9
2 1 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9
</pre>
 
=={{header|zkl}}==
{{trans|Julia}}
<langsyntaxhighlight lang="zkl">fcn pancakeSort(a){
foreach i in ([a.len()-1..1,-1]){
j := a.index((0).max(a[0,i+1])); // min for decending sort
Line 3,917 ⟶ 4,144:
}
a
}</langsyntaxhighlight>
Note: [offset,count] not [start,stop]
 
Finding the max index creates a partial list, which isn't good; if it matters use:
<langsyntaxhighlight lang="zkl"> j := (i+1).reduce('wrap(x,y){ if(a[x]>a[y]) x else y });</langsyntaxhighlight>
<langsyntaxhighlight lang="zkl">pancakeSort(List(7,6,9,2,4,8,1,3,5)).println();</langsyntaxhighlight>
{{out}}<pre>L(1,2,3,4,5,6,7,8,9)</pre>
 
9,476

edits