-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path0061-rotate-list.rb
60 lines (49 loc) · 1.29 KB
/
0061-rotate-list.rb
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# frozen_string_literal: true
# 61. Rotate List
# https://leetcode.com/problems/rotate-list
# Medium
=begin
Given the head of a linked list, rotate the list to the right by k places.
Example 1:
Input: head = [1,2,3,4,5], k = 2
Output: [4,5,1,2,3]
Example 2:
Input: head = [0,1,2], k = 4
Output: [2,0,1]
Constraints:
* The number of nodes in the list is in the range [0, 500].
* -100 <= Node.val <= 100
* 0 <= k <= 2 * 109
=end
# Definition for singly-linked list.
# class ListNode
# attr_accessor :val, :next
# def initialize(val = 0, _next = nil)
# @val = val
# @next = _next
# end
# end
# @param {ListNode} head
# @param {Integer} k
# @return {ListNode}
def rotate_right(head, k)
return head if head.nil? || head.next.nil? || k == 0
# Calculate the length of the linked list
length = 1
old_tail = head
while old_tail.next
old_tail = old_tail.next
length += 1
end
# Update k to be the effective number of rotations needed
k %= length
return head if k == 0
# Find the new tail node (length - k - 1) and the new head node (length - k)
new_tail = head
(length - k - 1).times { new_tail = new_tail.next }
new_head = new_tail.next
# Update the next pointers of the new tail and the old tail
new_tail.next = nil
old_tail.next = head
new_head
end