MCPcopy Create free account
hub / github.com/TheAlgorithms/Python / Node

Class Node

data_structures/queues/circular_queue_linked_list.py:151–155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149
150
151class Node:
152 def __init__(self) -> None:
153 self.data: Any | None = None
154 self.next: Node | None = None
155 self.prev: Node | None = None
156
157
158if __name__ == "__main__":

Callers 1

create_linked_listMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected