Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • LinkedList implementation in Java

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 349
    Comment on it

    Hi friends, Here I am writing a way to implement basic LinkedList.

    First of all LinkedList has the properties of List interface and AbstractSequentialList class because it implements List interface and extends AbstractSequentialList.

    Example :-

    1. LinkedList myLinkedList = new LinkedList();
    2. // add elements to the linked list
    3.  
    4. myLinkedList.add("A");
    5. myLinkedList.add("B");
    6. myLinkedList.add("C");
    7. myLinkedList.add("D");
    8. myLinkedList.add("E");
    9. myLinkedList.addLast("Z");
    10. myLinkedList.addFirst("F");
    11. myLinkedList.add(1, "F9");
    12. System.out.println("Values of linked list > > > > > " + myLinkedList);
    13.  
    14. // remove elements from the linked list
    15. myLinkedList.remove("A");
    16. myLinkedList.remove(2);
    17. System.out.println("Values of linked list after deleting > > > > > "+ myLinkedList);
    18.  
    19. // remove first and last elements
    20. myLinkedList.removeSecond();
    21. myLinkedList.removeLast();
    22. System.out.println("Values of linked list ----- " + myLinkedList);
    23.  
    24.  
    25. }
    26. }

    Output:

    1. Values of linked list > > > > > [F, F9, A, B, C, D, E, Z]
    2. Values of linked list after deleting > > > > > [F, F9, C, D, E, Z]
    3. Values of linked list -----: [F, C, D, E]

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: