📜  PHP | SplDoublyLinkedList count()函数

📅  最后修改于: 2022-05-13 01:56:52.035000             🧑  作者: Mango

PHP | SplDoublyLinkedList count()函数

SplDoublyLinkedList::count()函数是PHP中的一个内置函数,用于计算双向链表中存在的元素数。

句法:

int SplDoublyLinkedList::count( void )

参数:不包含任何参数。

返回值:它返回双向链表中存在的元素数。

下面的程序说明了PHP中的SplDoublyLinkedList::count()函数:

方案一:

add(0, 30);
$list->add(1, 20);
$list->add(2, 30);
$list->add(3, "Geeks");
$list->add(4, 'G');
  
// Use SplDoublyLinkedList::count() function
// to return number of elements
print_r($list->count());
  
?> 
输出:
5

方案二:

push(1);
$list->push(2);
$list->push(3);
$list->push(8);
$list->push(5);
  
// Use SplDoublyLinkedList::count() function
// to return number of elements
print_r($list->count());
  
?> 
输出:
5

参考: https://www. PHP.net/manual/en/spldoublylinkedlist.count。 PHP