Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
2
class
Node:
3
def
__init__(self, v = None):
4
self.data = v
Callers
nothing calls this directly
Calls
8
DoublyLinkedList
Class · 0.85
remove
Method · 0.80
addFront
Method · 0.45
addTail
Method · 0.45
display
Method · 0.45
insert
Method · 0.45
removeHead
Method · 0.45
removeTail
Method · 0.45
Tested by
no test coverage detected