鱼C论坛

 找回密码
 立即注册
查看: 1677|回复: 0

[学习笔记] Leetcode 92:反转链表 II

[复制链接]
发表于 2019-8-1 13:41:12 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Code:
#include <stdio.h>

struct Node{

    int val;

    struct Node *next;

};


struct Node * reverseList1(struct Node *hd, int n, int m){

    int change_len = m - n + 1;

    struct Node * result = hd;

    struct Node * pre_head = NULL;

    while(hd && --n){

        pre_head = hd;

        hd = hd->next;

    }

    struct Node * modify_node_tail = hd;

    struct Node * newHead = NULL;

    while(hd && change_len){

        struct Node *next = hd->next;

        hd->next = newHead;

        newHead = hd;

        hd = next;

        change_len = change_len -1;

    }

    modify_node_tail->next = hd;

    if(pre_head){

        pre_head -> next = newHead;
    }
    else{

        result = newHead;
    }


    return result;
}

int main(void){

    struct Node a;
    struct Node b;
    struct Node c;
    struct Node d;
    struct Node e;

    a.val = 10;
    b.val = 20;
    c.val = 30;
    d.val = 40;
    e.val = 50;

    a.next = &b;
    b.next = &c;
    c.next = &d;
    d.next = &e;
    e.next = NULL;

    struct Node * head = &a;

    while(head){

        printf("%d\n", head->val);

        head = head->next;

    }

    printf("----------\n");

    struct Node * head_2 = &a;

    int x = 2;

    int y = 4;

    struct Node *ptr_1 = reverseList1(head_2, x, y);

    while(ptr_1){

        printf("%d\n", ptr_1->val);

        ptr_1 = ptr_1->next;

    }

    printf("----------\n");

    return 0;
}

Output:
10
20
30
40
50
----------
10
40
30
20
50
----------

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 10:36

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表