<?php declare(strict_types=1); error_reporting(-1); ini_set('display_errors', 'On'); $helper = new class extends SplMinHeap { public function compare($a, $b): int { return ($b['current_qty'] + $b['add_qty']) <=> ($a['current_qty'] + $a['add_qty']); } }; $locations = [ ['location_name' => 'Toronto', 'current_qty' => 3, 'add_qty' => 0], ['location_name' => 'Mississauga', 'current_qty' => 7, 'add_qty' => 0], ['location_name' => 'London', 'current_qty' => 5, 'add_qty' => 0], ]; foreach ($locations as $entry) { $helper->insert($entry); } $qty = 10000; while ($qty-- > 0) { $min = $helper->extract(); $min['add_qty']++; $helper->insert($min); } print_r(iterator_to_array($helper));
You have javascript disabled. You will not be able to edit any code.