phpOMS/Algorithm/Sort/SelectionSort.php
2024-03-20 07:21:26 +00:00

67 lines
1.2 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package phpOMS\Algorithm\Sort;
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\Algorithm\Sort;
/**
* SelectionSort class.
*
* @package phpOMS\Algorithm\Sort;
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
final class SelectionSort implements SortInterface
{
/**
* Constructor
*
* @since 1.0.0
* @codeCoverageIgnore
*/
private function __construct()
{
}
/**
* {@inheritdoc}
*/
public static function sort(array $list, int $order = SortOrder::ASC) : array
{
$n = \count($list);
if ($n < 2) {
return $list;
}
for ($i = 0; $i < $n - 1; ++$i) {
$min = $i;
for ($j = $i + 1; $j < $n; ++$j) {
if (!$list[$j]->compare($list[$min], $order)) {
$min = $j;
}
}
if ($min !== $i) {
$old = $list[$i];
$list[$i] = $list[$min];
$list[$min] = $old;
}
}
return $list;
}
}