摘要: 61. Rotate List 方法一:做k次rotation。 1.corner case需要考虑 2.当k远远大于的计算量的时候,记得算出链表长度并对长度求余。 class Solution { public ListNode rotateRight(ListNode head, int k) 阅读全文
posted @ 2020-01-14 09:26 阿飞哦 阅读(323) 评论(0) 推荐(0) 编辑