MCPcopy Create free account
hub / github.com/apna-college/Alpha / print

Method print

12_LinkedList.java/LL.java:36–43  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

34 }
35
36 public void print() {
37 Node temp = head;
38 while(temp != null) {
39 System.out.print(temp.data+"->");
40 temp = temp.next;
41 }
42 System.out.println("null");
43 }
44
45 public void add(int idx, int data) {
46 if(idx == 0) {

Callers 15

mainMethod · 0.95
printArrMethod · 0.45
printArrMethod · 0.45
printArrMethod · 0.45
printArrMethod · 0.45
printArrMethod · 0.45
printArrMethod · 0.45
printInRangeMethod · 0.45
printPathMethod · 0.45
inorderMethod · 0.45
printArrMethod · 0.45
printSudokuMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected