Testing a List Class in Java

Problem:

Write a program that implements an LinkedQueue in java.

Output:

[GB, DE, FR, ES]
[GB, DE, FR, DE, ES]
list.get(3): DE
list.indexOf("DE"): 1
list.indexOf("IE"): -1
list.subList(1, 5): [DE, FR, DE, ES]
[GB, FR, DE, ES]

Solution:

public class TestStringList {
public static void main(String[] args) {
List<String> list = new ArrayList<String>();
Collections.addAll(list, "GB", "DE", "FR", "ES");
System.out.println(list);
list.add(3, "DE");
System.out.println(list);
System.out.println("list.get(3): " + list.get(3));
System.out.println("list.indexOf(\"DE\"): " + list.indexOf("DE"));
System.out.println("list.indexOf(\"IE\"): " + list.indexOf("IE"));
System.out.println("list.subList(1, 5): " + list.subList(1, 5));
list.remove("DE");
System.out.println(list);
}
}


1 comment :

  1. buy tiktok views Increase your exposure on social media! Check out our deals and buy Instagram Followers, Buy Youtube Subscribers, and more! Fast, cheap, and 24/7 Support.

    ReplyDelete

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact