Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Linked List reverese program

Answer Posted / dsr

import java.util.Collections;
import java.util.LinkedList;


public class LikedListDemo {
public static void main(String[] args) {
LinkedList list = new LinkedList();
list.add("Raju");
list.add("Gopal");
list.add("Senthil");
list.add("nagesh");
System.out.println("list size....."+list.size());
System.out.println("list ....."+list);
Collections.reverse(list);
System.out.println("revese list ....."+list);
}
}

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is hash code collision?

1006


Using callable statement how can you pass out parameters, explain with example?

1168


Explain about the security aspect of java?

925


What are the differences between this and super keyword?

898


What is the difference between throw and throws in java?

1031


What is java dot?

888


When we serialize an object does the serialization mechanism saves its references too?

972


What is an interoperable application in java ?

953


Does java vector allow null?

897


What are the methods of object class ?

999


A non-static inner class may have object instances that are associated with instances of the class’s outer class. A static inner class does not have any object instances.

961


Can you have two constructors in java?

900


Explain, java is compatible with all servers but not all browsers?

1006


Can you override a final method?

983


Will the jvm load the package twice at runtime?

1046