Module dalpy.linked_lists
Module that holds classes related to linked lists.
This module contains the `SinglyLinkedListNode and DoublyLinkedListNode classes. SinglyLinkedListNode can be used
to recursively define a singly linked list. DoublyLinkedListNode can be used to recursively define a doubly linked
list. Problems or algorithms that operate on linked lists should take an object of either of these classes.
Examples
A singly linked list can be created as follows:
s = SinglyLinkedListNode(1)
s.next = SinglyLinkedListNode(2)
s.next.next = SinglyLinkedListNode(3)
A doubly linked list can be created as follows:
d = DoublyLinkedListNode(1)
d.next = DoublyLinkedListNode(2)
d.next.prev = d
d.next.next = DoublyLinkedListNode(3)
d.next.next.prev = d.next
Classes
class DoublyLinkedListNode (data=None, next_node=None, prev_node=None)-
Represents a doubly linked list node.
This class represents a doubly linked list node.
Attributes
data- The data stored in the node. This can be of any type.
next- A
DoublyLinkedListNoderepresenting the node that follows this node in a doubly linked list. prev- A
DoublyLinkedListNoderepresenting the node that precedes this node in a doubly linked list.
Initializes a doubly linked list node in
O(1)time.Args
data- The data to be stored in the node. This can be of any type. By default, this is
None. next_node- The
DoublyLinkedListNodeto follow thisDoublyLinkedListNode. By default, this isNone. prev_node- The
DoublyLinkedListNodeto precede thisDoublyLinkedListNode. By default, this isNone.
class SinglyLinkedListNode (data=None, next_node=None)-
Represents a singly linked list node.
Attributes
data- The data stored in the node. This can be any type.
next- A
SinglyLinkedListNoderepresenting the node that follows it this node in a singly linked list.
Initializes a
SinglyLinkedListNodeinO(1)time.Args
data- The data to be stored in the node. This can be of any type. By default, this is
None. next_node- The
SinglyLinkedListNodeto follow thisSinglyLinkedListNode. By default, this isNone.