PHP
PHP copied to clipboard
Added Extra Tests for Splay Tree Operations
Addendum to my #168,
-
Added tests to verify the correct tree size after deleting single and multiple nodes.
testDeleteExistingKey(): Checks the tree size after single node deletion.testDeleteMultipleKeys(): Checks the tree size after the multiple random node deletion.testLargeTree(): Checks tree operations,search,delete, abdinserton large tree structure.
-
Added abstract declaration for
setRoot()in theSplayTreeRotations.phpas it references its child class implementation asstatic::setRoot()in bothrotateLeft()androtateRight() -
Minor typo fixes