MCPcopy Index your code
hub / github.com/BeeBombshell/Python-DSA / DoublyLinkedList.py

File DoublyLinkedList.py

DSA/DoublyLinkedList.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#class to create Node
2class Node:
3 def __init__(self, v = None):
4 self.data = v

Callers

nothing calls this directly

Calls 8

DoublyLinkedListClass · 0.85
removeMethod · 0.80
addFrontMethod · 0.45
addTailMethod · 0.45
displayMethod · 0.45
insertMethod · 0.45
removeHeadMethod · 0.45
removeTailMethod · 0.45

Tested by

no test coverage detected