
import java.util.Scanner;
class Node
{
int data;
Node next;
}
//**********************LinkedList Class**********************//
public class LinkedList
{
Node head;
public void insert(int d)
{
Node temp=new Node();
temp.data=d;
temp.next=null;
...