Skip to main content
Version: 1.0

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.