题解 | #转动链表#

转动链表

https://www.nowcoder.com/practice/afbec6b9d4564c63b2c149ccc01c5678

/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 * };
 */

class Solution {
public:
    /**
     * 
     * @param head ListNode类 
     * @param k int整型 
     * @return ListNode类
     */
    ListNode* rotateRight(ListNode* head, int k) 
    {   
        if(head==NULL||k==0||head->next==NULL)
        {
            return head;
        }
        int length=0;
        ListNode *po=head;
        while (po->next)
        {
            length++;
            po=po->next;
        }
        po->next=head;
        length++;
        for(int i=0;i<length-(k%length);i++)
        {
            po=po->next;
        }
        ListNode*res=po;
        res=po->next;
        po->next=NULL;
        return res;

        // write code he
    }
};

全部评论

相关推荐

不愿透露姓名的神秘牛友
10-29 21:14
疯犬丨哈士奇:喜欢你的人会主动表白,对你有想法的人会很主动,所以要你的公司不会吊着你所以懂了吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务