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

Class Node

12_LinkedList.java/DoubleLL.java:2–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1public class DoubleLL {
2 public 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 public static Node head;
14 public static Node tail;
15 public static int size;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…