Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My need is to sort the ArrayList of Strings, based on specific index range. For example I have following items in list: ["abc", "xyz", "pqr" , "asd"]Now I want to sort this list from index 1 till last index.

One way As I think that I can create a sub-list from main list with desired index range, sort it and add the sub-list accordingly. But my question is, is there any API already available for that? Or any other faster way to achieve this.

Regards,

Anand

share|improve this question

1 Answer

up vote 11 down vote accepted

You should do

Collections.sort(yourList.subList(1, yourList.size()));

Since the List.subList method returns a view of the list, modifications done by Collections.sort will affect the backing list as well.

share|improve this answer
Thanks a lot.... – geekEclipse Aug 29 '11 at 15:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.