MCPcopy Index your code
hub / github.com/Jack-Lee-Hiter/AlgorithmsByPython / Lists.py

File Lists.py

Lists.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Node:
2 def __init__(self, initdata):
3 self.data = initdata
4 self.next = None

Callers

nothing calls this directly

Calls 7

NodeClass · 0.85
UnorderedListClass · 0.85
setDataMethod · 0.80
getNextMethod · 0.80
addMethod · 0.80
searchMethod · 0.80
removeMethod · 0.45

Tested by

no test coverage detected