Quantcast
Image Image
OVERALL

0-0

PCT

0

CONF.

0-0

PCT

0

STREAK

W0

HOME

0-0

AWAY

0-0

NEUTRAL

0-0

The SplMinHeap class

Posted On: Monday, September 07, 2020
By: Oitejjho Dutta


(PHP 5 >= 5.3.0, PHP 7)

Introduction

The SplMinHeap class provides the main functionalities of a heap, keeping the minimum on the top.

Table of Contents

  • SplMinHeap::compare — Compare elements in order to place them correctly in the heap while sifting up

gom
¶

7 months ago


I experimented what happens when arrays are inserted:

$heap = new SplMinHeap();
$heap->insert([22,333]);
$heap->insert([2,33]);
$heap->insert([222,3]);

var_export($heap->extract());
echo
'
'
;
var_export($heap->extract());
echo
'
'
;
var_export($heap->extract());
?>

Output:

array ( 0 => 2, 1 => 33, )
array ( 0 => 22, 1 => 333, )
array ( 0 => 222, 1 => 3, )

  • Facebook
  • Twitter
  • Google +
  • email
  • LinkedIn
  • RSS
  • StumbleUpon
  • Tumblr
Processing your request, Please wait....

Alerts

     

    Please log in to vote

    You need to log in to vote. If you already had an account, you may log in here

    Alternatively, if you do not have an account yet you can create one here.