X7ROOT File Manager
Current Path:
/opt/alt/php70/usr/share/pear/test/Structures_LinkedList/tests
opt
/
alt
/
php70
/
usr
/
share
/
pear
/
test
/
Structures_LinkedList
/
tests
/
ðŸ“
..
📄
LinkTester.php
(492 B)
📄
SingleLinkTester.php
(462 B)
📄
link_001.phpt
(987 B)
📄
link_002.phpt
(675 B)
📄
link_003.phpt
(1000 B)
📄
link_004.phpt
(544 B)
📄
link_005.phpt
(1.21 KB)
📄
link_006.phpt
(991 B)
📄
link_007.phpt
(1.32 KB)
📄
single_link_001.phpt
(1000 B)
📄
single_link_002.phpt
(688 B)
📄
single_link_003.phpt
(1013 B)
📄
single_link_004.phpt
(557 B)
📄
single_link_005.phpt
(1.22 KB)
📄
single_link_006.phpt
(1004 B)
📄
single_link_007.phpt
(1.19 KB)
Editing: link_003.phpt
--TEST-- link_003: Append links in a specific order --FILE-- <?php $dir = dirname(__FILE__); require 'Structures/LinkedList/Double.php'; require 'LinkTester.php'; $xyy = new Structures_LinkedList_Double(); // add initial link in the list $xyy->appendNode($tester1); print $tester1->getNumb() . "\n"; // add after initial link $xyy->appendNode($tester2); print $tester2->getNumb() . "\n"; // add after initial link, bumping #2 up $xyy->insertNode($tester3, $tester1); print $tester3->getNumb() . "\n"; // add after link #3, bumping #2 up again $xyy->insertNode($tester4, $tester3); print $tester4->getNumb() . "\n"; print "\n"; $link = $xyy->current(); print $link->getNumb(); print "\n"; // test iteration with while() while ($link = $xyy->next()) { print $link->getNumb(); print "\n"; } $link = $xyy->rewind(); print "\n"; print $link->getNumb(); print "\n"; // test foreach() iteration foreach ($xyy as $bull) { print $bull->getNumb(); } ?> --EXPECT-- 1 2 3 4 1 3 4 2 1 1342
Upload File
Create Folder