MCPcopy Create free account
hub / github.com/geekcomputers/Python / push

Method push

Sorting Algorithims/heapsort_linkedlist.py:11–14  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

9 self.head = None
10
11 def push(self, data):
12 new_node = Node(data)
13 new_node.next = self.head
14 self.head = new_node
15
16 def print_list(self):
17 current = self.head

Callers 1

Calls 1

NodeClass · 0.70

Tested by

no test coverage detected