I have added the insertion function and display could anyone help me with the deletion That would be much appreciated.
public class Node
{
Object data;
Node next;
}
public class LkList {
public Node insertVar(Object var1, Node ls1) {
Node p = new Node();
p.data = var1;
p.next = ls1;
ls1 = p;
return ls1;
}
public Node deleteVar(Object var1, Node ls1){
// deletion function goes here
}
public void printL(Node ls1) {
System.out.print("The lklist of variables is: ");
Node p = ls1;
while (p != null) {
System.out.print("[" + p.data + "]" + "->");
p = p.next;
}
System.out.println();
}
}