Java旋转列表中的元素
如何旋转列表元素?
解决方法
下面的示例使用rotate()方法根据该方法的第二参数来旋转列表的元素。
import java.util.*; public class Main { public static void main(String[] args) { List list = Arrays.asList("one Two three Four five six".split(" ")); System.out.println("List :"+list); Collections.rotate(list, 3); System.out.println("rotate: " + list); } }
结果
上面的代码示例将产生以下结果。
List :[one, Two, three, Four, five, six] rotate: [Four, five, six, one, Two, three]