zoukankan      html  css  js  c++  java
  • [Leetcode]旋转链表

    题目

     

    代码 

    /**
     * Definition for singly-linked list.
     * struct ListNode {
     *     int val;
     *     ListNode *next;
     *     ListNode(int x) : val(x), next(NULL) {}
     * };
     */
    class Solution {
    public:
       ListNode* rotateRight(ListNode* head, int k) {
         if(head==nullptr)
           return nullptr;
    		auto ptr = head;
    		int length = 0;
    		while (ptr != nullptr)
    		{
    			ptr = ptr->next;
    			length++;
    		}
        
        k=k%length;
         if(k==0)
           return head;
    		//54321 2
    		auto newHead = ReverseList(head, length);
         if(k==length)
           return newHead;
    		//45321 2
    		newHead = ReverseList(newHead, k);
    		//45123 2
    		int num = k;
    		auto nextHead = newHead;
    		while (num > 0)
    		{
    			nextHead = nextHead->next;
    			num--;
    		}
    		auto nextNewHead=ReverseList(nextHead, length - k);
    		auto connPtr = newHead;
    		while (k > 1)
    		{
    			connPtr = connPtr->next;
    			k--;
    		}
    		connPtr->next = nextNewHead;
    		return newHead;
    
    	}
    	/*
       * head 开始结点
       * num 翻转的个数
       * return 反转后的头结点
       */
    	ListNode* ReverseList(ListNode*head, int num)
    	{
    		if (head == nullptr || num == 0)
    			return nullptr;
    		auto realTail = head;
    
    		ListNode* newHead = nullptr;
    		ListNode* temp = nullptr;
    		while (num>0)
    		{
    			temp = head->next;
    			head->next = newHead;
    			newHead = head;
    			head = temp;
    			num--;
    		}
    		realTail->next = temp;
    		return newHead;
    	}
    };
  • 相关阅读:
    html之marquee详解
    CSS盒模型
    基于windows API的手柄/键盘映射编程(一)
    阿超的烦恼来临的始端
    阿超的小目标
    程序员的800字作文
    Link to Coding
    项目经理都干些什么啊
    停不下来的英语课联想
    Markdown
  • 原文地址:https://www.cnblogs.com/lizhenghao126/p/11053559.html
Copyright © 2011-2022 走看看