java - Swapping items in list using only add and remove -


i wondering if work swap around items in list. example: initial items: m l -> desired: l m

for (int = 1 ; < testlist.size() ; i++ )      testlist.add( 0 , testlist.remove (i)); 

your idiom works*, collections.reverse(testlist); optimized way it.


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -