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
Post a Comment