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

Method add

Lists.py:31–34  ·  view source on GitHub ↗
(self, item)

Source from the content-addressed store, hash-verified

29 return self.head == None
30
31 def add(self, item):
32 temp = Node(item)
33 temp.setNext(self.head)
34 self.head = temp
35
36 def size(self):
37 current = self.head

Callers 1

Lists.pyFile · 0.80

Calls 2

setNextMethod · 0.95
NodeClass · 0.85

Tested by

no test coverage detected