MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / printList

Method printList

Programs/MergeKsortedLists.java:87–94  ·  view source on GitHub ↗
(Node node)

Source from the content-addressed store, hash-verified

85 class GfG
86 {
87 public static void printList(Node node)
88 {
89 while(node != null)
90 {
91 System.out.print(node.data + " ");
92 node = node.next;
93 }
94 }
95
96 public static void main (String[] args) {
97 Scanner sc = new Scanner(System.in);

Callers 1

mainMethod · 0.95

Calls 1

printMethod · 0.80

Tested by

no test coverage detected