PHP Data Structures - Circular Singly Linked List
Circular Singly Linked List
Traversal
Insert a new node at the start
Insert a new node at the end
Insert a new node at a given position
Delete the first node
Delete the last node
Delete a node at the given position
Delete all nodes
Count nodes
Delete even nodes
Delete odd nodes
Search an element
Delete first node by key
Delete last node by key
Delete all nodes by key
Reverse the List
Swap node values
Other Related Topics
PHP - Linked List
PHP - Doubly Linked List
PHP - Circular Doubly Linked List
Tutorials