题解 | #链表内指定区间反转#

链表内指定区间反转

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

struct ListNode* reverseBetween(struct ListNode* head, int m, int n ) {
    if(m==n){
        return head;
    }
    // else
    struct ListNode* p;
    p = head;
    int  count = 1;
    while(p->next!=NULL && count<m){
        p = p->next;
        count++;
    }
    struct ListNode* p1;
    p1 = head;
    if(m!=1){
        while(p1->next!=p){
            p1 = p1->next;
        }
    }
    // p停在m位置
    // printf("p->val: %d\n",p->val);

    struct ListNode* q;
    q = p;
    while(q->next!=NULL && count<n){
        q = q->next;
        count++;
    }
    // q停在n当前的位置
    // printf("q->val: %d\n",q->val);

    // sub
    struct ListNode* subp;
    subp = NULL;
    struct ListNode* subtail;
    struct ListNode* headp;
    headp = p;
    struct ListNode* temp;
    int flag = 0;
    while(headp != q->next){
        temp = (struct ListNode*)malloc(sizeof(struct ListNode));
        temp -> next = NULL;
        temp -> val = headp -> val;
        temp -> next = subp;
        if(flag == 0){
            temp -> next = q->next;
        }
        subp = temp;
        headp = headp -> next;
        flag++;
    }
    // output the sub list
    // printf("the sub list \n");
    // struct ListNode* psub;
    // psub = subp;
    // while(psub!=NULL){
         // printf("%d ", psub->val);
         // psub = psub->next;
    // }
    // printf("\n");
    if(m!=1){
        p1->next = temp;
        return head;
    }else{
        // p1 = temp;
        return temp;
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:52
点赞 评论 收藏
分享
Yushuu:你的确很厉害,但是有一个小问题:谁问你了?我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了😆
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务