Mojo module
linked_list
Implements a doubly-linked list data structure.
This module provides the LinkedList type, a doubly-linked list where each
element points to both the next and previous elements. This structure enables
efficient insertion and deletion at any position, though random access requires
traversal. The implementation includes iterator support for forward and reverse
traversal.
Structsโ
- โ
LinkedList: A doubly-linked list implementation. - โ
Node: A node in a linked list data structure.
Was this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!