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

Method printLL

Sorting Algorithims/quicksort_linkedlist.py:27–35  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

25
26 # method to print the linkedlist
27 def printLL(self) -> None:
28 temp = self.head
29 if temp == None:
30 return "Linked List is empty"
31 while temp.next:
32 print(temp.data, "->", end="")
33 temp = temp.next
34 print(temp.data)
35 return
36
37
38# Partition algorithm with pivot as first element

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected