Walter
Waltido
1 Answer(s)      a year and 8 months ago
Posted in : Java Beginners

How do I write a program using a linked list, that will prompt a user to enter 10 names and display them reversed using output dialog boxes.

View Answers

September 15, 2011 at 3:22 PM


import java.util.*;
        import javax.swing.*;

        class  LinkedListExample
        {
            public static void main(String[] args) 
            {
                String names[]=new String[5];
                for(int i=0;i<names.length;i++){
                 names[i]=JOptionPane.showInputDialog("Enter name "+(i+1));
                }
                final LinkedList<String> list=new LinkedList<String>();

                for(int i=0;i<names.length;i++){
                    list.add(names[i]);
                }

                Collections.reverse(list);
                StringBuffer buffer=new StringBuffer();
                for(String name : list){
                  buffer.append(name);
                  buffer.append("\n");
                }
                JOptionPane.showMessageDialog(null,"List of names in reverse order: \n"+buffer.toString());
            }
        }









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.