1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
class Solution { public ListNode rotateRight(ListNode head, int k) { if(head == null) return head;
Map<Integer,ListNode> map = new HashMap<>(); ListNode cur = head; int len = 1; while(cur.next != null){ map.put(len++, cur); cur =cur.next; }
if((k=(k%len))==0) return head;
cur.next = head;
ListNode newTail = map.get(len-k);
ListNode newHead = newTail.next; newTail.next = null;
return newHead; } }
|