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

Class ListNode

Programs/ReverseList.java:69–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68// Solution class contains reverseList method which takes the start address as input and reverses the whole linkedlist
69class ListNode
70{
71 int data;
72 ListNode next;
73}
74// ListNode class is created for linklist creation

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected