借助栈逆置单链表

编写算法Reverse(LinkList &L),要求借助于栈将一个带头结点的单链表L逆置。其中栈的初始化操作、入栈操作和出栈操作算法名分别为InitStack(&S)、Push(&S,e)、Pop(&S,&e)。
注意:new你也可以用malloc delete就换成free

cpp 复制代码
typedef int ElemType;
typedef  struct  SNODE

{
    ElemType  data;

    struct  SNODE* next;

}SNODE, * LinkStack;

void InitStack(LinkStack& l)
{
    l = new SNODE;
    l->next = nullptr;
}
void push(LinkStack& l, ElemType x)
{
    LinkStack p = new SNODE;
    p->data = x;
    p->next = l->next;
    l->next = p;
}
void pop(LinkStack& l,ElemType& e)
{
    if (!l->next) return;
    
   
    LinkStack p = l->next; e = p->data;
    LinkStack q = p->next;
     l->next=q;
    delete p;
}
int empty(LinkStack& l)
{
    if (l->next == nullptr)  return 1;
    else return 0;
}

typedef struct  s {

    ElemType      data;      // 数据域

    struct s* next;   // 指针域

} LNode, * LinkList;


void Reverse(LinkList& l)
{
    LinkList p = l->next;
    LinkList r = l;
    LinkStack s;
    int e;
    InitStack(s);
    while (p)
    {
        push(s, p->data);
        p = p->next;
    }
    while (!empty(s))
    {
       pop(s, e);
       LinkList q = new LNode;
       q->data = e;
       q->next = nullptr;
       r->next = q;
       r = q;
    }

}
相关推荐
Hera_Yc.H2 小时前
数据结构之一:复杂度
数据结构
肥猪猪爸3 小时前
使用卡尔曼滤波器估计pybullet中的机器人位置
数据结构·人工智能·python·算法·机器人·卡尔曼滤波·pybullet
linux_carlos3 小时前
环形缓冲区
数据结构
readmancynn4 小时前
二分基本实现
数据结构·算法
Bucai_不才4 小时前
【数据结构】树——链式存储二叉树的基础
数据结构·二叉树
盼海4 小时前
排序算法(四)--快速排序
数据结构·算法·排序算法
一直学习永不止步4 小时前
LeetCode题练习与总结:最长回文串--409
java·数据结构·算法·leetcode·字符串·贪心·哈希表
珹洺5 小时前
C语言数据结构——详细讲解 双链表
c语言·开发语言·网络·数据结构·c++·算法·leetcode
几窗花鸢5 小时前
力扣面试经典 150(下)
数据结构·c++·算法·leetcode
.Cnn5 小时前
用邻接矩阵实现图的深度优先遍历
c语言·数据结构·算法·深度优先·图论