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