LINKED_LIST_DEMO

PHOTO EMBED

Wed May 29 2024 13:07:18 GMT+0000 (Coordinated Universal Time)

Saved by @signup

import java.util.*;
public class LinkedListDemo
{
public static void main(String[] args)
{
LinkedList<String> ll = new LinkedList<>();
ll.add("first"); ll.add("second"); ll.add("fourth");
System.out.println("Contents: " + ll);
System.out.println();
ll.add(2, "third"); ll.addFirst("zero");
System.out.println("Contents: " + ll);
System.out.println();
// experiment with more methods here and extend the program
}
}
content_copyCOPY