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

What is the best way to rearrange elements in an list? I need the ability to move elements to move elements in the list, one step back or forward in the index. I was thinking of getting the index of the item, adding it at index -1 / +2 and removing the old reference.

Is there a faster way to handle rearranging without creating duplicates in the list in the process.

share|improve this question
Please provide an example. For example, having the list ABCDEF, what do you want? Something like ABCEDF (moving an element) or ABCEF (removing an element)? Why do you write -1 / +2 instead of -1 / +1? – schnaader Mar 18 '09 at 9:51
I had +2 as if you add say 'C' in your example to indexof(c)+1, you'll get ABCCDEF removing the old C will take it back to ABCDEF. putting +2 will give you ABCDCEF and removing old value will give ABDCEF. Thus +2 instead of +1. But Collections.swap was exactly what I was looking for. – Jens Jansson Mar 18 '09 at 10:25

1 Answer

up vote 30 down vote accepted

Use the JDK's swap method

The JDK's Collections class contains a method just for this purpose called Collections.swap. According to the API documentation this method allows you to "swap the elements at the specified positions in the specified list."

I suggest this solution so that you don't have to remove elements from the List and so that you don't have to roll your own swap method. Also, it looks like this method has been around since the 1.4 release of Java so it should work for most of the modern JDKs.

share|improve this answer
Doh. Didn't even see that. Deleting my answer... – Jon Skeet Mar 18 '09 at 10:54
I only remembered it because I was looking at it today for my project. It is in one of the dark corners of the JDK. – Elijah Mar 18 '09 at 11:03
Very cool, I don't think I've ever used that method either, but it definitely could come in handy. – Jeff Olson Mar 18 '09 at 19:02

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.