代码拉取完成,页面将自动刷新
public class _61 {
static class Solution {
public ListNode rotateRight(ListNode head, int k) {
//纯逻辑?
//观察可知,新的heand 在 list的长度 - k + 1处
ListNode cursor = head;
ListNode tail = null;
int size = 0;
while (cursor != null) {
size++;
tail = cursor;
cursor = cursor.next;
}
if (size == 0) return null;
k = k % size;
int target = (size - k + 1) % (size + 1);
int start = 1;
ListNode newHead = head;
ListNode pre = null;
while (start < target) {
pre = newHead;
newHead = newHead.next;
start++;
}
if (pre != null) {
pre.next = null;
tail.next = head;
}
return newHead;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。