| 1 | public class LL { |
| 2 | public static class Node { |
| 3 | int data; |
| 4 | Node next; |
| 5 | public Node(int data) { |
| 6 | this.data = data; |
| 7 | this.next = null; |
| 8 | } |
| 9 | } |
| 10 | public static Node head; |
| 11 | public static Node tail; |
| 12 | public static int size; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…