Sorting algorithms/Sleep sort: Difference between revisions

m
 
(17 intermediate revisions by 15 users not shown)
Line 10:
 
=={{header|Ada}}==
<langsyntaxhighlight Adalang="ada">with Ada.Text_IO;
with Ada.Command_Line; use Ada.Command_Line;
procedure SleepSort is
Line 24:
TaskList(i) := new PrintTask(Integer'Value(Argument(i)));
end loop;
end SleepSort;</langsyntaxhighlight>
{{out}}
<pre>./sleepsort 35 21 11 1 2 27 32 7 42 20 50 42 25 41 43 14 46 20 30 8
Line 30:
 
=={{header|APL}}==
<syntaxhighlight lang="apl">
<lang APL>
sleepsort←{{r}⎕TSYNC{r,←⊃⍵,⎕DL ⍵}&¨⍵,r←⍬}
</syntaxhighlight>
</lang>
 
=={{header|Assembly}}==
{{works with|flat assembler for Linux x64}}
<syntaxhighlight lang="asm">
format ELF64 executable 3
entry start
 
; parameters: argc, argv[] on stack
start:
mov r12, [rsp] ; get argc
mov r13, 1 ; skip argv[0]
 
.getargv:
cmp r13, r12 ; check completion of args
je .wait
mov rdi, [rsp+8+8*r13] ; get argv[n]
inc r13
 
mov rax, 57 ; sys_fork
syscall
 
cmp rax, 0 ; continue loop in main process
jnz .getargv
 
push rdi ; save pointer to sort item text
 
call atoi_simple ; convert text to integer
test rax, rax ; throw out bad input
js .done
 
sub rsp, 16 ; stack space for timespec
mov [rsp], rax ; seconds
mov qword [rsp+8], 0 ; nanoseconds
 
lea rdi, [rsp]
xor rsi, rsi
mov rax, 35 ; sys_nanosleep
syscall
 
add rsp, 16
 
pop rdi ; retrieve item text
call strlen_simple
 
mov rsi, rdi
mov byte [rsi+rax], ' '
mov rdi, 1
mov rdx, rax
inc rdx
mov rax, 1 ; sys_write
syscall
 
jmp .done
 
.wait:
dec r12 ; wait for each child process
jz .done
mov rdi, 0 ; any pid
mov rsi, 0
mov rdx, 0
mov r10, 4 ; that has terminated
mov rax, 247 ; sys_waitid
syscall
 
jmp .wait
 
.done:
xor rdi, rdi
mov rax, 60 ; sys_exit
syscall
 
; parameter: rdi = string pointer
; return: rax = integer conversion
atoi_simple:
push rdi
push rsi
 
xor rax, rax
 
.convert:
movzx rsi, byte [rdi]
test rsi, rsi ; check for null
jz .done
 
cmp rsi, '0'
jl .baddigit
cmp rsi, '9'
jg .baddigit
sub rsi, 48 ; get ascii code for digit
 
imul rax, 10 ; radix 10
add rax, rsi ; add current digit to total
 
inc rdi
jmp .convert
 
.baddigit:
mov rax, -1 ; return error code on failed conversion
 
.done:
pop rsi
pop rdi
ret ; return integer value
 
; parameter: rdi = string pointer
; return: rax = length
strlen_simple:
xor rax, rax
 
.compare:
cmp byte [rdi+rax], 0
je .done
inc rax
jmp .compare
 
.done:
ret
</syntaxhighlight>
{{out}}
<pre>
./sleepsort 35 21 11 1 2 27 32 7 42 20 50 42 25 41 43 14 46 20 30 8
1 2 7 8 11 14 20 20 21 25 27 30 32 35 41 42 42 43 46 50
</pre>
 
=={{header|AutoHotkey}}==
<syntaxhighlight lang="autohotkey">items := [1,5,4,9,3,4]
for i, v in SleepSort(items)
result .= v ", "
MsgBox, 262144, , % result := "[" Trim(result, ", ") "]"
return
 
SleepSort(items){
global Sorted := []
slp := 50
for i, v in items{
fn := Func("PushFn").Bind(v)
SetTimer, %fn%, % v * -slp
}
Sleep % Max(items*) * slp
return Sorted
}
 
PushFn(v){
global Sorted
Sorted.Push(v)
}</syntaxhighlight>
{{out}}
<pre>[1, 3, 4, 4, 5, 9]</pre>
 
=={{header|Bash}}==
<langsyntaxhighlight lang="bash">
function sleep_and_echo {
sleep "$1"
Line 46 ⟶ 194:
 
wait
</syntaxhighlight>
</lang>
 
{{out}}
Line 77 ⟶ 225:
{{works with|BBC BASIC for Windows}}
This does not explicitly 'sleep', but uses timers to implement the different delays.
<langsyntaxhighlight lang="bbcbasic"> INSTALL @lib$+"TIMERLIB"
DIM test%(9)
Line 100 ⟶ 248:
DEF PROCtask7 : PRINT test%(7) : ENDPROC
DEF PROCtask8 : PRINT test%(8) : ENDPROC
DEF PROCtask9 : PRINT test%(9) : ENDPROC</langsyntaxhighlight>
'''Output:'''
<pre>
Line 116 ⟶ 264:
 
=={{header|Brainf***}}==
<syntaxhighlight lang="c">
<lang C>
>>>>>,----------[++++++++
++[->+>+<<]>+>[-<<+>>]+++
Line 125 ⟶ 273:
->>>>>[>>>>>]<-<<<<[<<<<<
]+<]<<<<]>>>>>[>>>>>]<]
</syntaxhighlight>
</lang>
Not exactly 'sleep' sort but it is similar: it inputs an array of digits and in each iteration reduces elements by 1. When an element becomes 0 – it prints the original digit.
 
Line 133 ⟶ 281:
 
=={{header|C}}==
<langsyntaxhighlight Clang="c">#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
Line 145 ⟶ 293:
wait(0);
return 0;
}</langsyntaxhighlight>
Running it:<syntaxhighlight lang="text">% ./a.out 5 1 3 2 11 6 4
1
2
Line 153 ⟶ 301:
5
6
11</langsyntaxhighlight>
If you worry about time efficiency of this sorting algorithm (ha!), you can make it a 100 times faster by replacing the <code>sleep(...</code> with <code>usleep(10000 * (c = atoi(v[c])))</code>. The smaller the coefficient, the faster it is, but make sure it's not comparable to your kernel clock ticks or the wake up sequence will be wrong.
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="csharp">using System;
using System.Collections.Generic;
using System.Linq;
Line 182 ⟶ 330:
SleepSort(arguments.Select(int.Parse));
}
}</langsyntaxhighlight>
 
===Using Tasks===
 
<langsyntaxhighlight lang="csharp">var input = new[] { 1, 9, 2, 1, 3 };
 
foreach (var n in input)
Line 194 ⟶ 342:
Console.WriteLine(n);
});
</syntaxhighlight>
</lang>
 
Output, i.e. in LINQPad:
Line 205 ⟶ 353:
 
=={{header|C++}}==
<langsyntaxhighlight lang="cpp">
#include <chrono>
#include <iostream>
Line 226 ⟶ 374:
}
}
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 249 ⟶ 397:
=={{header|Clojure}}==
Using core.async
<langsyntaxhighlight lang="clojure">(ns sleepsort.core
(require [clojure.core.async :as async :refer [chan go <! <!! >! timeout]]))
 
Line 257 ⟶ 405:
(go (<! (timeout (* 1000 i)))
(>! c i)))
(<!! (async/into [] (async/take (count l) c)))))</langsyntaxhighlight>
<langsyntaxhighlight lang="clojure">(sleep-sort [4 5 3 1 2 7 6])
;=> [1 2 3 4 5 6 7]</langsyntaxhighlight>
 
=={{header|CoffeeScript}}==
{{works_with|node.js}}
<langsyntaxhighlight lang="coffeescript">
after = (s, f) -> setTimeout f, s*1000
 
Line 275 ⟶ 423:
input = (parseInt(arg) for arg in process.argv[2...])
sleep_sort input
</syntaxhighlight>
</lang>
output
<syntaxhighlight lang="text">
> time coffee sleep_sort.coffee 5, 1, 3, 4, 2
1
Line 288 ⟶ 436:
user 0m0.147s
sys 0m0.024s
</syntaxhighlight>
</lang>
 
=={{header|Common Lisp}}==
{{works_with|SBCL}}
<langsyntaxhighlight lang="lisp">(defun sleeprint(n)
(sleep (/ n 10))
(format t "~a~%" n))
Line 299 ⟶ 447:
(sb-thread:make-thread (lambda() (sleeprint (parse-integer arg)))))
 
(loop while (not (null (cdr (sb-thread:list-all-threads)))))</langsyntaxhighlight>
{{Out}}
<pre>$ sbcl --script ss.cl 3 1 4 1 5
Line 310 ⟶ 458:
 
=={{header|D}}==
<langsyntaxhighlight lang="d">void main(string[] args)
{
import core.thread, std;
Line 318 ⟶ 466:
write(a, " ");
});
}</langsyntaxhighlight>
{{out}}
<pre>$ ./sorting_algorithms_sleep_sort 200 20 50 10 80
Line 324 ⟶ 472:
 
=={{header|Dart}}==
<langsyntaxhighlight lang="dart">
void main() async {
Future<void> sleepsort(Iterable<int> input) => Future.wait(input
Line 331 ⟶ 479:
await sleepsort([3, 10, 2, 120, 122, 121, 54]);
}
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 344 ⟶ 492:
 
=={{header|Delphi}}==
<langsyntaxhighlight Delphilang="delphi">program SleepSortDemo;
 
{$APPTYPE CONSOLE}
Line 402 ⟶ 550:
Writeln;
ReadLn;
end.</langsyntaxhighlight>
Output:
<pre>
Line 410 ⟶ 558:
 
=={{header|Elena}}==
ELENA 56.0 :
<langsyntaxhighlight lang="elena">import extensions;
import system'routines;
import extensions'threading;
Line 422 ⟶ 570:
sleepSort()
{
self.forEach::(n)
{
threadControl.start(
Line 436 ⟶ 584:
}
}
 
public program()
{
program_arguments.skipping:(1).selectBy(mssgconst toInt<convertorOpintConvertOp>[1]).toArray().sleepSort();
 
console.readChar()
}</langsyntaxhighlight>
 
=={{header|Elixir}}==
{{trans|Erlang}}
<langsyntaxhighlight lang="elixir">defmodule Sort do
def sleep_sort(args) do
Enum.each(args, fn(arg) -> Process.send_after(self, arg, 5 * arg) end)
Line 461 ⟶ 609:
end
 
Sort.sleep_sort [2, 4, 8, 12, 35, 2, 12, 1]</langsyntaxhighlight>
 
{{out}}
Line 478 ⟶ 626:
GNU Emacs supports threads, but it's more straightforward to do this by just using timers.
Evaluate in the *scratch* buffer by typing <code>C-M-x</code> on the expression:
<langsyntaxhighlight Lisplang="lisp">(dolist (i '(3 1 4 1 5 92 65 3 5 89 79 3))
(run-with-timer (* i 0.001) nil 'message "%d" i))</langsyntaxhighlight>
 
The output printed in the *Messages* buffer is:
Line 494 ⟶ 642:
 
=={{header|Erlang}}==
<langsyntaxhighlight lang="erlang">#!/usr/bin/env escript
%% -*- erlang -*-
%%! -smp enable -sname sleepsort
Line 511 ⟶ 659:
io:format("~s~n", [Num]),
loop(N - 1)
end.</langsyntaxhighlight>
{{out}}
<pre>./sleepsort 2 4 8 12 35 2 12 1
Line 524 ⟶ 672:
 
=={{header|Euphoria}}==
<langsyntaxhighlight lang="euphoria">include get.e
 
integer count
Line 554 ⟶ 702:
task_yield()
end while
end if</langsyntaxhighlight>
 
=={{header|F_Sharp|F#}}==
<langsyntaxhighlight lang="fsharp">
let sleepSort (values: seq<int>) =
values
Line 567 ⟶ 715:
|> Async.Ignore
|> Async.RunSynchronously
</syntaxhighlight>
</lang>
 
Usage:
<langsyntaxhighlight lang="fsharp">
sleepSort [10; 33; 80; 32]
10
Line 576 ⟶ 724:
33
80
</syntaxhighlight>
</lang>
 
=={{header|Factor}}==
 
<syntaxhighlight lang="factor">
<lang Factor>
USING: threads calendar concurrency.combinators ;
 
: sleep-sort ( seq -- ) [ dup seconds sleep . ] parallel-each ;
</syntaxhighlight>
</lang>
 
Usage:
 
<syntaxhighlight lang="factor">
<lang Factor>
{ 1 9 2 6 3 4 5 8 7 0 } sleep-sort
</syntaxhighlight>
</lang>
 
=={{header|Fortran}}==
<syntaxhighlight lang="fortran">
<lang Fortran>
program sleepSort
use omp_lib
Line 627 ⟶ 775:
end subroutine sleepNprint
end program sleepSort
</syntaxhighlight>
</lang>
Compile and Output:
<pre>
Line 644 ⟶ 792:
Can't use FreeBASIC '''sleep''' since it halts the program.
Instead it uses a second array filled with times based on the value of number, this array is check against the timer. If the timer is past the stored time the value is printed.
<langsyntaxhighlight lang="freebasic">' version 21-10-2016
' compile with: fbc -s console
' compile with: fbc -s console -exx (for bondry check on the array's)
Line 701 ⟶ 849:
Print : Print "hit any key to end program"
Sleep
End</langsyntaxhighlight>
{{out}}
<pre>unsorted 5 2 5 6 4 6 9 5 1 2 0
Line 708 ⟶ 856:
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import (
Line 733 ⟶ 881:
fmt.Println(<-out)
}
}</langsyntaxhighlight>
Usage and output:
<pre>./sleepsort 3 1 4 1 5 9
Line 745 ⟶ 893:
 
=== Using sync.WaitGroup ===
<langsyntaxhighlight lang="go">package main
 
import (
Line 772 ⟶ 920:
}
wg.Wait()
}</langsyntaxhighlight>
 
Usage and output are the same as the version using channels. Note that the original version would sleep for increments of 1 full second, so I made my code do the same.
 
=={{header|Groovy}}==
<langsyntaxhighlight lang="groovy">
@Grab(group = 'org.codehaus.gpars', module = 'gpars', version = '1.2.1')
import groovyx.gpars.GParsPool
Line 787 ⟶ 935:
}
}
</syntaxhighlight>
</lang>
 
Sample Run:
Line 800 ⟶ 948:
=={{header|Haskell}}==
 
<langsyntaxhighlight lang="haskell">import System.Environment
import Control.Concurrent
import Control.Monad
Line 811 ⟶ 959:
 
main :: IO ()
main = getArgs >>= sleepSort . map read</langsyntaxhighlight>
 
===Using mapConcurrentlymapConcurrently_===
<langsyntaxhighlight lang="haskell">import System.Environment
import Control.Concurrent
import Control.Concurrent.Async
 
sleepSort :: [Int] -> IO ()
sleepSort = (() <$) . mapConcurrentlymapConcurrently_ (\x -> threadDelay (x*10^4) >> print x)
 
main :: IO ()
main = getArgs >>= sleepSort . map read</langsyntaxhighlight>
 
This is problematic for inputs with multiple duplicates like <code>[1,2,3,1,4,1,5,1]</code> because simultaneous <code>print</code>s are done concurrently and the 1s and newlines get output in jumbled up order. The channels-based version above doesn't have this problem.
Line 830 ⟶ 978:
The following solution only works in Unicon.
 
<langsyntaxhighlight lang="unicon">procedure main(A)
every insert(t:=set(),mkThread(t,!A))
every spawn(!t) # start threads as closely grouped as possible
Line 838 ⟶ 986:
procedure mkThread(t,n) # 10ms delay scale factor
return create (delay(n*10),delete(t,&current),n@>&main)
end</langsyntaxhighlight>
 
Sample run:
Line 854 ⟶ 1,002:
->
</pre>
 
=={{header|J}}==
 
{{works with|J|903+}}
<syntaxhighlight lang="j">scheduledumb=: {{
id=:'dumb',":x:6!:9''
wd 'pc ',id
(t)=: u {{u y[erase n}} t=. id,'_timer'
wd 'ptimer ',":n p.y
}}
 
 
ssort=: {{
R=: ''
poly=. 1,>./ y
poly{{ y{{R=:R,m[y}}scheduledumb m y}}"0 y
{{echo R}} scheduledumb poly"0 >:>./ y
EMPTY
}}</syntaxhighlight>
 
Task example:
 
<syntaxhighlight lang="j"> t=: ?~30
t
11 7 22 16 17 2 1 19 23 29 9 21 15 10 12 27 3 4 24 20 14 5 26 18 8 6 0 13 25 28
ssort t
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29</syntaxhighlight>
 
Note that since t is the result of an RNG, the order of values in t would be different in subsequent attempts. For example:
 
<syntaxhighlight lang="j"> t=: ?~30
t
23 26 24 25 10 12 4 5 7 27 16 17 14 8 3 15 18 13 19 21 2 28 22 9 6 20 11 1 29 0
ssort t
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29</syntaxhighlight>
 
=={{header|Java}}==
{{works with|Java|1.5+}}
<langsyntaxhighlight lang="java5">import java.util.concurrent.CountDownLatch;
 
public class SleepSort {
Line 887 ⟶ 1,070:
sleepSortAndPrint(nums);
}
}</langsyntaxhighlight>
Output (using "3 1 4 5 2 3 1 6 1 3 2 5 4 6" as arguments):
<pre>1
Line 905 ⟶ 1,088:
 
=={{header|JavaScript}}==
<langsyntaxhighlight lang="javascript">Array.prototype.timeoutSort = function (f) {
this.forEach(function (n) {
setTimeout(function () { f(n) }, 5 * n)
});
}
</syntaxhighlight>
</lang>
Usage and output:
<langsyntaxhighlight lang="javascript">[1, 9, 8, 7, 6, 5, 3, 4, 5, 2, 0].timeoutSort(function(n) { document.write(n + '<br>'); })</langsyntaxhighlight>
<pre>
0
Line 926 ⟶ 1,109:
</pre>
 
<langsyntaxhighlight lang="javascript">Array.prototype.sleepSort = function(callback) {
const res = [];
for (let n of this)
Line 939 ⟶ 1,122:
[1, 9, 8, 7, 6, 5, 3, 4, 5, 2, 0].sleepSort(console.log);
// [ 1, 0, 2, 3, 4, 5, 5, 6, 7, 8, 9 ]
</syntaxhighlight>
</lang>
 
=={{header|jq}}==
Line 946 ⟶ 1,129:
Doesn't actually sleep. Instead, iterates reducing the values by one until each is zero.
 
<langsyntaxhighlight lang="jq">echo '[5, 1, 3, 2, 11, 6, 4]' | jq '
def f:
if .unsorted == [] then
Line 956 ⟶ 1,139:
end;
{unsorted: [.[] | {v: ., t: .}], sorted: []} | f | .[]
'</langsyntaxhighlight>
{{out}}
<pre>1
Line 967 ⟶ 1,150:
 
=={{header|Julia}}==
{{works with|Julia|01.6}}
 
<langsyntaxhighlight lang="julia">function sleepsort(arrV::Vector{T}) where {T <: Real})
outU = Vector{eltype(arr)T}(0)
sizehint!(outU, length(arrV))
@sync for xv in arrV
@async begin
sleep(xabs(v))
(v < 0 ? pushfirst! : push!)(outU, xv)
end
end
return outU
end
 
 
 
v = rand(-10:10, 10)
println("# unordered: $v\n -> ordered: ", sleepsort(v))</langsyntaxhighlight>
 
{{out}}
<pre># unordered: [910, 5-1, 3, 8-9, 81, 2-5, 5-8, 2-7, 5-3, 53]
-> ordered: [2-9, 2-8, 3-7, -5, 5-3, 5-1, 51, 83, 83, 910]</pre>
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.1.51
 
import kotlin.concurrent.thread
Line 1,011 ⟶ 1,196:
println("Unsorted: ${list.joinToString(" ")}")
sleepSort(list, 50)
}</langsyntaxhighlight>
 
Sample output:
<pre>
$ java -jar sleepsort.jar 5 7 -1 2 4 1 8 0 3 9 6
Unsorted: 5 7 2 4 1 8 0 3 9 6
Sorted : 0 1 2 3 4 5 6 7 8 9
</pre>
 
=== Using coroutines ===
<syntaxhighlight lang="kotlin">
import kotlinx.coroutines.*
 
fun sleepSort(list: List<Int>, delta: Long) {
runBlocking {
list.onEach {
launch {
delay(it * delta)
print("$it ")
}
}
}
}
 
fun main() {
val list = listOf(5, 7, 2, 4, 1, 8, 0, 3, 9, 6)
println("Unsorted: ${list.joinToString(" ")}")
print("Sorted : ")
sleepSort(list, 10)
}
 
</syntaxhighlight>
 
Output:
<pre>
Unsorted: 5 7 2 4 1 8 0 3 9 6
Sorted : 0 1 2 3 4 5 6 7 8 9
Line 1,023 ⟶ 1,238:
Here's a slow implementation using only stock C Lua:
 
<langsyntaxhighlight lang="lua">function sleeprint(n)
local t0 = os.time()
while os.time() - t0 <= n do
Line 1,049 ⟶ 1,264:
end
end
end</langsyntaxhighlight>
 
By installing LuaSocket, you can get better than 1-second precision on the clock, and therefore faster output:
 
<langsyntaxhighlight lang="lua">socket = require 'socket'
 
function sleeprint(n)
Line 1,081 ⟶ 1,296:
end
end
end</langsyntaxhighlight>
 
Either way, the output is the same:
Line 1,102 ⟶ 1,317:
 
=={{header|Mathematica}}/{{header|Wolfram Language}}==
<langsyntaxhighlight lang="mathematica">SleepSort = RunScheduledTask[Print@#, {#, 1}] & /@ # &;
SleepSort@{1, 9, 8, 7, 6, 5, 3, 4, 5, 2, 0};</langsyntaxhighlight>
{{Out}}
<pre>
Line 1,121 ⟶ 1,336:
As implemented this sample goes beyond the scope of the task as defined; it will handle negative numbers.
 
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref symbols nobinary
import java.util.concurrent.CountDownLatch
Line 1,180 ⟶ 1,395:
parent.getDoneLatch().countDown() -- this one's done; decrement the latch
return
</syntaxhighlight>
</lang>
'''Output:'''
<pre>
Line 1,189 ⟶ 1,404:
=={{header|Nim}}==
Compile with <code>nim --threads:on c sleepsort</code>:
<langsyntaxhighlight lang="nim">import os, strutils
 
proc single(n: int) =
Line 1,201 ⟶ 1,416:
thr.joinThreads
 
main()</langsyntaxhighlight>
Usage:
<pre>$ ./sleepsort 5 1 3 2 11 6 4
Line 1,213 ⟶ 1,428:
 
=={{header|Objeck}}==
<langsyntaxhighlight lang="objeck">
use System.Concurrency;
use Collection;
Line 1,245 ⟶ 1,460:
}
}
</syntaxhighlight>
</lang>
 
=={{header|Objective-C}}==
<langsyntaxhighlight lang="objc">#import <Foundation/Foundation.h>
 
int main(int argc, char **argv)
Line 1,261 ⟶ 1,476:
}
[queue waitUntilAllOperationsAreFinished];
}</langsyntaxhighlight>
Rather than having multiple operations that sleep, we could also dispatch the tasks after a delay:
<langsyntaxhighlight lang="objc">#import <Foundation/Foundation.h>
 
int main(int argc, char **argv)
Line 1,273 ⟶ 1,488:
^{ NSLog(@"%d\n", i); });
}
}</langsyntaxhighlight>
 
=={{header|Oforth}}==
Line 1,281 ⟶ 1,496:
20 milliseconds is used to (try to) handle scheduler tick on Windows systems (around 15 ms). On Linux systems (after kernel 2.6.8), this value can be smaller.
 
<langsyntaxhighlight Oforthlang="oforth">import: parallel
 
: sleepSort(l)
Line 1,287 ⟶ 1,502:
Channel new ->ch
l forEach: n [ #[ n dup 20 * sleep ch send drop ] & ]
ListBuffer newSize(l size) #[ ch receive over add ] times(l size) ;</langsyntaxhighlight>
 
{{out}}
Line 1,301 ⟶ 1,516:
82, 82, 83, 83, 84, 84, 85, 85, 86, 86, 87, 87, 88, 88, 89, 89, 90, 90, 91, 91, 92, 92, 9
3, 93, 94, 94, 95, 95, 96, 96, 97, 97, 98, 98, 99, 99, 100, 100]
</pre>
 
=={{header|Ol}}==
<syntaxhighlight lang="scheme">
(define (sleep-sort lst)
(for-each (lambda (timeout)
(async (lambda ()
(sleep timeout)
(print timeout))))
lst))
 
(sleep-sort '(5 8 2 7 9 10 5))
</syntaxhighlight>
{{Out}}
<pre>
2
5
5
7
8
9
10
</pre>
 
Line 1,306 ⟶ 1,543:
{{works with|Free Pascal}}
my limit under linux was 4000 threads nearly 2 GB.
<langsyntaxhighlight lang="pascal">
program sleepsort;
{$IFDEF FPC}
Line 1,406 ⟶ 1,643:
readln;
{$ENDIF}
end.</langsyntaxhighlight>
{{out}}
<pre>time ./sleepsort
Line 1,417 ⟶ 1,654:
=={{header|Perl}}==
Basically the C code.
<langsyntaxhighlight Perllang="perl">1 while ($_ = shift and @ARGV and !fork);
sleep $_;
print "$_\n";
wait;</langsyntaxhighlight>
 
 
A more optimal solution makes use of Coro, a cooperative threading library. It has the added effect of being much faster, fully deterministic (sleep is not exact), and it allows you to easily collect the return value:
<langsyntaxhighlight Perllang="perl">use Coro;
$ret = Coro::Channel->new;
@nums = qw(1 32 2 59 2 39 43 15 8 9 12 9 11);
Line 1,435 ⟶ 1,672:
}
 
print $ret->get,"\n" for 1..@nums;</langsyntaxhighlight>
 
=={{header|Phix}}==
CopyBased ofon [[Sorting_algorithms/Sleep_sort#Euphoria|Euphoria]]
<!--<syntaxhighlight lang="phix">(notonline)-->
<lang Phix>integer count
<span style="color: #008080;">without</span> <span style="color: #008080;">js</span> <span style="color: #000080;font-style:italic;">-- (multitasking)</span>
<span style="color: #004080;">integer</span> <span style="color: #000000;">count</span>
procedure sleeper(integer key)
? key
<span style="color: #008080;">procedure</span> <span style="color: #000000;">sleeper</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">key</span><span style="color: #0000FF;">)</span>
count -= 1
<span style="color: #0000FF;">?</span> <span style="color: #000000;">key</span> <span style="color: #000080;font-style:italic;">-- (or maybe res &= key)</span>
end procedure
<span style="color: #000000;">count</span> <span style="color: #0000FF;">-=</span> <span style="color: #000000;">1</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">procedure</span>
sequence s, val
atom task
<span style="color: #000080;font-style:italic;">--sequence s = command_line()[3..$]</span>
<span style="color: #004080;">sequence</span> <span style="color: #000000;">s</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">split</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"3 1 4 1 5 9 2 6 5"</span><span style="color: #0000FF;">)</span>
s = command_line()
<span style="color: #008080;">if</span> <span style="color: #7060A8;">length</span><span style="color: #0000FF;">(</span><span style="color: #000000;">s</span><span style="color: #0000FF;">)=</span><span style="color: #000000;">0</span> <span style="color: #008080;">then</span>
s = s[3..$]
<span style="color: #7060A8;">puts</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Nothing to sort.\n"</span><span style="color: #0000FF;">)</span>
if length(s)=0 then
<span style="color: #008080;">else</span>
puts(1,"Nothing to sort.\n")
<span style="color: #000000;">count</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">0</span>
else
<span style="color: #008080;">for</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">1</span> <span style="color: #008080;">to</span> <span style="color: #7060A8;">length</span><span style="color: #0000FF;">(</span><span style="color: #000000;">s</span><span style="color: #0000FF;">)</span> <span style="color: #008080;">do</span>
count = 0
<span style="color: #004080;">object</span> <span style="color: #000000;">si</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">to_number</span><span style="color: #0000FF;">(</span><span style="color: #000000;">s</span><span style="color: #0000FF;">[</span><span style="color: #000000;">i</span><span style="color: #0000FF;">])</span>
for i = 1 to length(s) do
<span style="color: #008080;">if</span> <span style="color: #004080;">integer</span><span style="color: #0000FF;">(</span><span style="color: #000000;">si</span><span style="color: #0000FF;">)</span> <span style="color: #008080;">then</span>
val = value(s[i])
<span style="color: #004080;">atom</span> <span style="color: #000000;">task</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">task_create</span><span style="color: #0000FF;">(</span><span style="color: #000000;">sleeper</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">si</span><span style="color: #0000FF;">})</span>
if val[1] = GET_SUCCESS then
<span style="color: #7060A8;">task_schedule</span><span style="color: #0000FF;">(</span><span style="color: #000000;">task</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">si</span><span style="color: #0000FF;">/</span><span style="color: #000000;">10</span><span style="color: #0000FF;">,</span><span style="color: #000000;">si</span><span style="color: #0000FF;">/</span><span style="color: #000000;">10</span><span style="color: #0000FF;">})</span>
task = task_create(routine_id("sleeper"),{val[2]})
<span style="color: #000000;">count</span> <span style="color: #0000FF;">+=</span> <span style="color: #000000;">1</span>
task_schedule(task,{val[2],val[2]}/10)
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
count += 1
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
end if
end for
<span style="color: #008080;">while</span> <span style="color: #000000;">count</span> <span style="color: #008080;">do</span>
<span style="color: #7060A8;">task_yield</span><span style="color: #0000FF;">()</span>
while count do
<span style="color: #008080;">end</span> <span style="color: #008080;">while</span>
task_yield()
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
end while
<!--</syntaxhighlight>-->
end if</lang>
 
=={{header|PHP}}==
A PHP implementation of sleep sort using process forking.
<syntaxhighlight lang="php">
<?php
 
$buffer = 1;
$pids = [];
 
for ($i = 1; $i < $argc; $i++) {
$pid = pcntl_fork();
if ($pid < 0) {
die("failed to start child process");
}
 
if ($pid === 0) {
sleep($argv[$i] + $buffer);
echo $argv[$i] . "\n";
exit();
}
$pids[] = $pid;
}
 
foreach ($pids as $pid) {
pcntl_waitpid($pid, $status);
}
</syntaxhighlight>
<pre>
php ./sleepsort.php 35 21 11 1 2 27 32 7 42 20 50 42 25 41 43 14 46 20 30 8
1
2
7
8
11
14
20
20
21
25
27
30
32
35
41
42
42
43
46
50
</pre>
 
 
=={{header|PicoLisp}}==
===Sleeping in main process===
<langsyntaxhighlight PicoLisplang="picolisp">(de sleepSort (Lst)
(make
(for (I . N) Lst
Line 1,478 ⟶ 1,767:
(pop 'Lst)
(task (- I)) ) )
(wait NIL (not Lst)) ) )</langsyntaxhighlight>
===Sleeping in child processes===
<langsyntaxhighlight PicoLisplang="picolisp">(de sleepSort (Lst)
(make
(for N Lst
Line 1,487 ⟶ 1,776:
(pop 'Lst)
(task (close @)) ) )
(wait NIL (not Lst)) ) )</langsyntaxhighlight>
Output in both cases:
<pre>: (sleepSort (3 1 4 1 5 9 2 6 5))
Line 1,493 ⟶ 1,782:
===Just printing (no sorted result list)===
Basically the C code.
<langsyntaxhighlight PicoLisplang="picolisp">(for N (3 1 4 1 5 9 2 6 5)
(unless (fork)
(call 'sleep N)
(msg N)
(bye) ) )</langsyntaxhighlight>
Output:
<pre>1
Line 1,511 ⟶ 1,800:
=={{header|Pike}}==
 
<syntaxhighlight lang="pike">
<lang Pike>
#!/usr/bin/env pike
Line 1,533 ⟶ 1,822:
return;
}
</syntaxhighlight>
</lang>
Output :
<pre>
Line 1,547 ⟶ 1,836:
=={{header|Prolog}}==
Works with SWI-Prolog.
<langsyntaxhighlight Prologlang="prolog">sleep_sort(L) :-
thread_pool_create(rosetta, 1024, []) ,
maplist(initsort, L, LID),
Line 1,556 ⟶ 1,845:
thread_create_in_pool(rosetta, (sleep(V), writeln(V)), Id, []).
 
</syntaxhighlight>
</lang>
Output :
<pre> sleep_sort([5, 1, 3, 2, 11, 6, 3, 4]).
Line 1,572 ⟶ 1,861:
 
=={{header|PureBasic}}==
<langsyntaxhighlight PureBasiclang="purebasic">NewMap threads()
 
Procedure Foo(n)
Line 1,588 ⟶ 1,877:
Next
Print("Press ENTER to exit"): Input()
EndIf</langsyntaxhighlight>
<pre>Sleep_sort.exe 3 1 4 1 5 9
1
Line 1,601 ⟶ 1,890:
===Python: Using threading.Timer===
 
<langsyntaxhighlight lang="python">from time import sleep
from threading import Timer
 
Line 1,620 ⟶ 1,909:
print('sleep sort worked for:',x)
else:
print('sleep sort FAILED for:',x)</langsyntaxhighlight>
 
;Sample output:
Line 1,630 ⟶ 1,919:
could be a sole translation from the original version in Bash:
{{Works with|Python 3.5+}}
<langsyntaxhighlight lang="python">#!/usr/bin/env python3
from asyncio import run, sleep, wait
from sys import argv
Line 1,639 ⟶ 1,928:
 
if __name__ == '__main__':
run(wait(list(map(f, map(int, argv[1:])))))</langsyntaxhighlight>
Example usage:
<pre>
Line 1,656 ⟶ 1,945:
=={{header|Racket}}==
 
<langsyntaxhighlight lang="racket">
#lang racket
 
Line 1,672 ⟶ 1,961:
;; outputs '(2 5 5 7 8 9 10)
(sleep-sort '(5 8 2 7 9 10 5))
</syntaxhighlight>
</lang>
 
=={{header|Raku}}==
(formerly Perl 6)
 
<syntaxhighlight lang="raku" perl6line>await map -> $delay { start { sleep $delay ; say $delay } },
<6 8 1 12 2 14 5 2 1 0>;</langsyntaxhighlight>
 
{{out}}
Line 1,694 ⟶ 1,983:
This can also be written using reactive programming:
 
<syntaxhighlight lang="raku" perl6line>#!/usr/bin/env raku
use v6;
react whenever Supply.from-list(@*ARGS).start({ .&sleep // +$_ }).flat { .say }</langsyntaxhighlight>
 
{{out}}
Line 1,710 ⟶ 1,999:
This sort will accept any manner of numbers, &nbsp; or for that matter, &nbsp; any character string as well.
<br>REXX isn't particular what is being sorted.
<langsyntaxhighlight lang="rexx">/*REXX program implements a sleep sort (with numbers entered from the command line (CL).*/
numeric digits 300 /*over the top, but what the hey! */
/* (above) ··· from vaudeville. */
Line 1,757 ⟶ 2,046:
do m=1 for howMany-1; next= m+1; if @.m>@.next then return 0 /*¬ in order*/
end /*m*/ /*keep looking for fountain of youth. */
return 1 /*yes, indicate with an indicator. */</langsyntaxhighlight>
Programming note: &nbsp; this REXX program makes use of &nbsp; '''DELAY''' &nbsp; BIF which delays (sleeps) for a specified amount of seconds.
<br>Some REXXes don't have a &nbsp; '''DELAY''' &nbsp; BIF, &nbsp; so one is included here &nbsp; ──► &nbsp; [[DELAY.REX]].
Line 1,789 ⟶ 2,078:
 
=={{header|Ruby}}==
<langsyntaxhighlight lang="ruby">require 'thread'
 
nums = ARGV.collect(&:to_i)
Line 1,803 ⟶ 2,092:
threads.each {|t| t.join}
 
p sorted</langsyntaxhighlight>
 
Example
Line 1,810 ⟶ 2,099:
 
=={{header|Rust}}==
<langsyntaxhighlight lang="rust">use std::thread;
 
fn sleepsort<I: Iterator<Item=u32>>(nums: I) {
Line 1,822 ⟶ 2,111:
fn main() {
sleepsort(std::env::args().skip(1).map(|s| s.parse().unwrap()));
}</langsyntaxhighlight>
Output:
<pre>$ ./sleepsort 50 34 43 3 2
Line 1,833 ⟶ 2,122:
 
=={{header|Scala}}==
<langsyntaxhighlight lang="scala">object SleepSort {
 
def main(args: Array[String]): Unit = {
Line 1,849 ⟶ 2,138:
}.start())
 
}</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight lang="bash">$ scala SleepSort 1 3 6 0 9 7 4 2 5 8
0 1 2 3 4 5 5 6 7 8 9 </langsyntaxhighlight>
 
=={{header|Sidef}}==
<langsyntaxhighlight lang="ruby">ARGV.map{.to_i}.map{ |i|
{Sys.sleep(i); say i}.fork;
}.each{.wait};</langsyntaxhighlight>
{{out}}
<pre>% sidef test.sf 5 1 3 2 11 6 4
Line 1,869 ⟶ 2,158:
 
=={{header|Simula}}==
<langsyntaxhighlight lang="simula">SIMULATION
BEGIN
 
Line 1,888 ⟶ 2,177:
OUTIMAGE;
 
END;</langsyntaxhighlight>
{{out}}
<pre> 1 2 3 3 4 6 7 9
Line 1,895 ⟶ 2,184:
=={{header|SNUSP}}==
Bloated SNUSP is ideally suited to this task, since this the variant adds multithreading and an additional dimension of data space. Sleep time is simulated by the loop delay required to copy each cell value, thereby ensuring that smaller values are printed earlier than larger values. This program requires a Bloated SNUSP interpreter which returns zero on input end-of-file.
<syntaxhighlight lang="snusp">
<lang SNUSP>
/$>\ input until eof
#/?<\?,/ foreach: fork
Line 1,901 ⟶ 2,190:
/:\?-; delay /
\.# print and exit thread
</syntaxhighlight>
</lang>
 
Legend:
Line 1,909 ⟶ 2,198:
 
=={{header|Swift}}==
<langsyntaxhighlight Swiftlang="swift">import Foundation
 
for i in [5, 2, 4, 6, 1, 7, 20, 14] {
Line 1,920 ⟶ 2,209:
}
 
CFRunLoopRun()</langsyntaxhighlight>
{{out}}
<pre>
Line 1,935 ⟶ 2,224:
=={{header|Tcl}}==
===Tcl 8.5===
<langsyntaxhighlight lang="tcl">#!/bin/env tclsh
set count 0
proc process val {
Line 1,948 ⟶ 2,237:
while {$count < $argc} {
vwait count
}</langsyntaxhighlight>
'''Demo:'''
<pre>
Line 1,968 ⟶ 2,257:
</pre>
===Tcl 8.6===
<langsyntaxhighlight lang="tcl">set sorted {}
lmap x $argv {after $x [list lappend sorted $x]}
while {[llength $sorted] != $argc} {
vwait sorted
}
puts $sorted</langsyntaxhighlight>
{{out}}
<pre>$ echo 'puts [lmap _ [lrepeat 30 {}] {expr {int(rand() * 100)}}]' | tclsh | tee /dev/tty | xargs tclsh sleepsort.tcl
Line 1,980 ⟶ 2,269:
 
===Tcl 8.6: coroutine===
<langsyntaxhighlight lang="tcl">#! /usr/bin/env tclsh
package require Tcl 8.6
Line 2,016 ⟶ 2,305:
coroutine c sleep-sort [validate $argv] ::sorted
vwait sorted</langsyntaxhighlight>
'''Demo:'''
<pre>
Line 2,034 ⟶ 2,323:
=={{header|UNIX Shell}}==
{{works with|Bourne Shell}}
<langsyntaxhighlight lang="bash">f() {
sleep "$1"
echo "$1"
Line 2,043 ⟶ 2,332:
shift
done
wait</langsyntaxhighlight>
Usage and output:
<pre>
Line 2,053 ⟶ 2,342:
5
9
</pre>
 
=={{header|Visual Basic .NET}}==
<syntaxhighlight lang="vbnet">Imports System.Threading
 
Module Module1
 
Sub SleepSort(items As IEnumerable(Of Integer))
For Each item In items
Task.Factory.StartNew(Sub()
Thread.Sleep(1000 * item)
Console.WriteLine(item)
End Sub)
Next
End Sub
 
Sub Main()
SleepSort({1, 5, 2, 1, 8, 10, 3})
Console.ReadKey()
End Sub
 
End Module</syntaxhighlight>
 
{{out}}
<pre>
1
1
2
3
5
8
10
</pre>
 
=={{header|V (Vlang)}}==
<syntaxhighlight lang="vlang">
import time
import sync
 
fn main() {
mut wg := sync.new_waitgroup()
test_arr := [3, 2, 1, 4, 1, 7]
wg.add(test_arr.len)
for i, value in test_arr {
go sort(i, value, mut wg)
}
wg.wait()
println('Printed sorted array')
}
 
fn sort(id int, value int, mut wg sync.WaitGroup) {
time.sleep(value * time.millisecond) // can change duration to second or others
println(value)
wg.done()
}
</syntaxhighlight>
 
{{out}}
<pre>
1
1
2
3
4
7
Printed sorted array
</pre>
 
=={{header|Wren}}==
More of a simulation than a 'true' sleep sort.
<langsyntaxhighlight ecmascriptlang="wren">import "timer" for Timer
import "io" for Stdout
import "os" for Process
Line 2,086 ⟶ 2,441:
}
}
System.print()</langsyntaxhighlight>
 
{{out}}
Sample run:
<pre>
$ wren sleepsortSorting_algorithms_Sleep_sort.wren 1 8 3 7 4 6
Before: 1 8 3 7 4 6
After : 1 3 4 6 7 8
Line 2,097 ⟶ 2,452:
 
=={{header|zkl}}==
<langsyntaxhighlight lang="zkl">vm.arglist.apply(fcn(n){ Atomic.sleep(n); print(n) }.launch);
Atomic.waitFor(fcn{ vm.numThreads == 1 }); Atomic.sleep(2); println();</langsyntaxhighlight>
{{out}}
<pre>
1

edit