package com.ds; public class NodeD { Object value; NodeD next; NodeD previous; public NodeD(Object value,NodeD next,NodeD previous) { this.value=value; this.next=next; this.previous=previous; } }