首页 > 编程语言 > 详细

C语言:【单链表】逆置反转单链表

时间:2016-01-13 00:46:38      阅读:202      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>
#include<assert.h>
#include<stdlib.h>

typedef int DataType;

typedef struct SListNode
{
    DataType data;
    struct SListNode* next;
}SListNode;

SListNode* BuyNode(DataType x)
{
    SListNode* next = (SListNode*)malloc(sizeof(SListNode));
    next->data = x;
    next->next = NULL;
    return next;
}

void PushBack(SListNode* & ppHead, DataType x)
{
    if (ppHead == NULL)
    {
        ppHead = BuyNode(x);
    }
    else
    {
        SListNode* tail = ppHead;
        while (tail->next != NULL)
        {
            tail = tail->next;
        }
        tail->next = BuyNode(x);
    }
}

//逆置反转单链表
void PushFront(SListNode* & ppHead,DataType x)
{
    SListNode* cur = BuyNode(x);
    cur->next = ppHead;
    ppHead = cur;
}

void PrintSNodeList(SListNode* ppHead)
{
    while (ppHead)
    {
        printf("%d->", ppHead->data);
        ppHead = ppHead->next;
    }
    printf("\n");
}

void Test3()
{
    SListNode* List = NULL;
    PushFront(List, 1);
    PushFront(List, 2);
    PushFront(List, 3);
    PushFront(List, 4);
    PushFront(List, 5);
    PrintSNodeList(List);
}

int main()
{
    Test3();
    system("pause");
    return 0;
}


C语言:【单链表】逆置反转单链表

原文:http://10740184.blog.51cto.com/10730184/1734404

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!