Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
function insertionSort($arr) { for ($i = 1; $i < $laenge; $i++) { $temp = $arr[$i..
Decoded Output download
<? function insertionSort($arr) {
for ($i = 1; $i < $laenge; $i++) {
$temp = $arr[$i];
$j = $i - 1;
while ($j >= 0 && arr[$j] > $temp) {
$arr[$j + 1] = $arr[$j];
$j = $j - 1;
}
$arr[$j + 1] = $temp;
}
}
echo"<br>";
echo "<p> Insertionsort:</p>
";
print_r($arr); ?>
Did this file decode correctly?
Original Code
function insertionSort($arr) {
for ($i = 1; $i < $laenge; $i++) {
$temp = $arr[$i];
$j = $i - 1;
while ($j >= 0 && arr[$j] > $temp) {
$arr[$j + 1] = $arr[$j];
$j = $j - 1;
}
$arr[$j + 1] = $temp;
}
}
echo"<br>";
echo "<p> Insertionsort:</p>\n";
print_r($arr);
Function Calls
None |
Stats
MD5 | 3794c8946fc2e79db6027c17c2e09bca |
Eval Count | 0 |
Decode Time | 39 ms |