Tuesday, October 7, 2025
HomeLanguagesPHP | SplHeap count() Function

PHP | SplHeap count() Function

The SplHeap::count() function is an inbuilt function in PHP which is used to count the elements in the heap.
Generally, Heap can be of two types:

  • Max-Heap: In a Max-Heap the key present at the root node must be greatest among the keys present at all of its children. The same property must be recursively true for all sub-trees in that Binary Tree.
  • Min-Heap: In a Min-Heap the key present at the root node must be minimum among the keys present at all of its children. The same property must be recursively true for all sub-trees in that Binary Tree.

Note: This article uses Max Heap which extends the SplHeap class.

Syntax:

int SplMaxHeap::count()

Parameters: This function does not accept any parameter.

Return Value: This function returns the number of nodes present in heap.

Below programs illustrate the SplMaxHeap::count() function in PHP:

Program 1:




<?php
  
// Create a new empty Max Heap
$heap = new SplMaxHeap();
  
$heap->insert('GEEKS');
$heap->insert('gfg');
  
// Print Result
echo $heap->count();
  
?>


Output:

2

Program 2:




<?php
  
// Create a new empty Max Heap
$heap = new SplMaxHeap();
  
// Print Result
echo $heap->count() . "\n";
  
$heap->insert('GEEKS');
$heap->insert('gfg');
$heap->insert('DSA');
$heap->insert('ALGO');
$heap->insert('C');
  
// Print Result
echo $heap->count();
  
?>


Output:

0
5

Reference: https://www.php.net/manual/en/splheap.count.php

RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS