Simple Linked List Program in Java

  1. import java.util.*;  
  2.   
  3. public class LinkedListDemo{  
  4.     public static void main(String[] args){  
  5.         LinkedList link=new LinkedList();  
  6.         link.add("a");  
  7.         link.add("b");  
  8.         link.add(new Integer(10));  
  9.         System.out.println("The contents of array is" + link);  
  10.         System.out.println("The size of an linkedlist is" + link.size());  
  11.           
  12.         link.addFirst(new Integer(20));  
  13.         System.out.println("The contents of array is" + link);  
  14.         System.out.println("The size of an linkedlist is" + link.size());  
  15.   
  16.         link.addLast("c");  
  17.         System.out.println("The contents of array is" + link);  
  18.         System.out.println("The size of an linkedlist is" + link.size());  
  19.   
  20.         link.add(2,"j");  
  21.         System.out.println("The contents of array is" + link);  
  22.         System.out.println("The size of an linkedlist is" + link.size());  
  23.   
  24.         link.add(1,"t");  
  25.         System.out.println("The contents of array is" + link);  
  26.         System.out.println("The size of an linkedlist is" + link.size());  
  27.   
  28.         link.remove(3);  
  29.         System.out.println("The contents of array is" + link);  
  30.         System.out.println("The size of an linkedlist is" + link.size());  
  31.     }