LinkedList copy

In this chapter you will learn:

  1. Shallow copy of a LinkedList

Shallow copy of a LinkedList

Object clone() Returns a shallow copy of this LinkedList.

Shallow copy means this LinkedList and its clone shares the same object reference to their elements.

import java.util.LinkedList;
//from  j  a v  a  2 s .com
public class Main{
    public static void main(String args[]) {

        LinkedList<String> ll = new LinkedList<String>();


        ll.add("B");
        ll.add("ja v a2s.com");
        ll.addLast("E");
        ll.add("F");


        System.out.println("Original contents of ll: " + ll);

        LinkedList newList = (LinkedList)ll.clone();
        
        System.out.println(newList);
    }
}

The output:

Next chapter...

What you will learn in the next chapter:

  1. Get iterator from LinkedList
  2. Get List Iterator from a LinkedList
Home » Java Tutorial » List

List

    List interface
    List add/insert elements
    List clear/remove elements
    List search
    List element get and set
    List and its Iterator
    List size, empty
    List conversion, to array
    List to sublist
    List comparison
    List filling
    List reversing
    List rotating and shuffling
    List sorting
    List element swap
    List element replacing
    List copy
    List binary search

ArrayList

    ArrayList
    ArrayList Creation
    ArrayList add/insert
    ArrayList get/set element
    ArrayList clear/remove
    ArrayList search
    ArrayList copy and shallow copy
    ArrayList size, trim to size and capacity
    ArrayList to array

LinkedList

    LinkedList class
    LinkedList creation
    LinkedList add/insert elements
    LinkedList get elements
    LinkedList search
    LinkeList replace/set elements
    LinkedList remove element
    LinkedList copy
    LinkedList iterator
    LinkedList peek element
    LinkedList pop/push element
    LinkedList conversion

List Utilities

    List filling
    List reversing
    List rotating and shuffling
    List sorting
    List element swap
    List element replacing
    List copy
    List binary search