本文包含如下题目:
61. Rotate List
189. Rotate Array
61. Rotate List
解题思路
本题目是链表的翻转,先求链表长度,然后构建循环链表,最后找到所求头节点断开循环返回即可。
代码
1 | class Solution |
189. Rotate Array
解题思路
数组的翻转,类似于链表的翻转,c++的vector容器有很多直接可以调用的函数,可以参考官方的讲解。
代码
Solution I
1 | class Solution |
Solution II
1 | class Solution |