当前位置:   article > 正文

C语言 | Leetcode C语言题解之第61题旋转链表

C语言 | Leetcode C语言题解之第61题旋转链表

题目:

题解:

  1. struct ListNode* rotateRight(struct ListNode* head, int k) {
  2. if (k == 0 || head == NULL || head->next == NULL) {
  3. return head;
  4. }
  5. int n = 1;
  6. struct ListNode* iter = head;
  7. while (iter->next != NULL) {
  8. iter = iter->next;
  9. n++;
  10. }
  11. int add = n - k % n;
  12. if (add == n) {
  13. return head;
  14. }
  15. iter->next = head;
  16. while (add--) {
  17. iter = iter->next;
  18. }
  19. struct ListNode* ret = iter->next;
  20. iter->next = NULL;
  21. return ret;
  22. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/538803
推荐阅读
相关标签
  

闽ICP备14008679号