mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
Added sorting test
This commit is contained in:
parent
7314f109b4
commit
3f40a66f43
3 changed files with 33 additions and 0 deletions
6
regression/orig/test037.log
Normal file
6
regression/orig/test037.log
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
> 5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
26
regression/test037.expr
Normal file
26
regression/test037.expr
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
fun sort (x) local i, j, y, n {
|
||||
n := x.length;
|
||||
|
||||
if n == 0 then return x fi;
|
||||
|
||||
for i := 0, i<n, i := i+1 do
|
||||
for j := i+1, j<n, j := j+1 do
|
||||
if x[j] < x[i] then
|
||||
y := x[i];
|
||||
x[i] := x[j];
|
||||
x[j] := y
|
||||
fi
|
||||
od
|
||||
od;
|
||||
|
||||
return x
|
||||
}
|
||||
|
||||
n := read ();
|
||||
x := [10, 9, 8, 7, 6, 5];
|
||||
|
||||
x := sort (x);
|
||||
|
||||
for i:=0, i<x.length, i:=i+1 do
|
||||
write (x[i])
|
||||
od
|
||||
1
regression/test037.input
Normal file
1
regression/test037.input
Normal file
|
|
@ -0,0 +1 @@
|
|||
0
|
||||
Loading…
Add table
Add a link
Reference in a new issue