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

php - Extract Text from HTTP referer -

Receive udp packets in android gstreamer -

authentication - ASP.NET Core 1.0. Bearer Token, cannot access custom claims -