SplMinHeap クラス
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
はじめに
SplMinHeap クラスは、ヒープの主要な機能を提供し、最小値を先頭に保ちます。
クラス概要
/* メソッド */
/* 継承したメソッド */
}目次
- SplMinHeap::compare — 要素を比較し、ヒープ内の適切な位置に置く
+add a note
User Contributed Notes 1 note
gom ¶
4 years ago
I experimented what happens when arrays are inserted:
<?php
$heap = new SplMinHeap();
$heap->insert([22,333]);
$heap->insert([2,33]);
$heap->insert([222,3]);
var_export($heap->extract());
echo '<br>';
var_export($heap->extract());
echo '<br>';
var_export($heap->extract());
?>
Output:
array ( 0 => 2, 1 => 33, )
array ( 0 => 22, 1 => 333, )
array ( 0 => 222, 1 => 3, )
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google