(self)
| 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 |
no outgoing calls
no test coverage detected