SAIL - Shuffle (losowy porządek w tablicy)

Gotowe kody SAIL'a, informacje na temat moddingu, itd.

Moderator: zoNE

Post Reply
Avatar de l’utilisateur
zoNE
The Great Uniter & Site Administrator
The Great Uniter & Site Administrator
Posts: 2099
Joined: ven. févr. 17, 2006 3:44 pm
Localisation: Poland
Contact:

SAIL - Shuffle (losowy porządek w tablicy)

Message by zoNE »

Serpent a écrit : jeu. mai 14, 2020 9:33 pm Funkcja ustawia elementy zadanej tablicy w losowej kolejności.

Code : Tout sélectionner

Export Function Shuffle(array);
var i, index;
begin
result := [];

if not array then
   exit;

Randomize;

for i = array downto 1 do
    begin
    index := rand(1, array);
    result := Insert(result, result + 1, array[index]);
    array := Delete(array, index);
    end;
End;
Author: Serpent
Topic: viewtopic.php?f=42&t=6204
Post Reply