单向链表的反序

链表的反序是链表的基本操作之一,简洁易读的反序操作实现也是体现一个人对链表的掌握程度。下面是我的一个链表实现方法,使用的是我的通用测试框架。

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

typedef struct node {
    struct node *next;
    int val;
}Node;


Node *reverse(Node *list)
{
    Node *pcur = NULL, *pnxt = NULL;

    if (NULL == list) {
        return NULL;
    }

    pcur = list->next;
    list->next = NULL;

    while (pcur) {
        pnxt = pcur->next;
        pcur->next = list;

        list = pcur;
        pcur = pnxt;
    }

    return list;
}

void printlist(Node *list)
{
    while (list) {
        printf("%d ", list->val);
        list = list->next;
    }
}

int main(int argc, char *argv[])
{
    int i;
    unsigned int len;
    Node *vector = NULL, *list = NULL;

    /* get the array lenth from input */
    scanf("%u", &len);

    vector = (Node *)malloc(len * sizeof(Node));
    if (NULL == vector) {
        return 1;
    }
    /* get the array value from input  */
    for (i=0; i<len; i++) {
        scanf("%d", &vector[i].val);
        if (i == len-1) {
            vector[i].next = NULL;
        } else {
            vector[i].next = &vector[i+1];
        }
    }

    list = reverse(vector);
    printlist(list);

    free(vector);
    return 0;
}

测试输入 5个节点的链表,各节点value值依次是 2 9 3 1 7

测试结果:

-bash-4.1$ ./link_reverse
5 2 9 3 1 7
7 1 3 9 2


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

浮沉飘摇

码字不易,打赏随意。

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值