博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
栈———链表实现
阅读量:5307 次
发布时间:2019-06-14

本文共 2175 字,大约阅读时间需要 7 分钟。

栈的链表实现细节主要在Push()和Pop()例程中链表的实现不一样。

操作图示:

Stack.c:

#ifndef STACK_H#define STACK_Htypedef char ElementType;struct Node;typedef struct Node *PtrToNode;typedef PtrToNode Stack;int IsEmpty(Stack S);Stack CreatStack();void MakeEmpty(Stack S);void DiseposeStack(Stack S);void Push(Stack S, ElementType X);void Pop(Stack S);ElementType Top(Stack S);ElementType PopAndTop(Stack S);#endif

LinkedStack.c:

#include"Stack.h"#include
#include
struct Node{ ElementType Element; PtrToNode Next;};Stack CreatStack(){ Stack S; S = (Stack)malloc(sizeof(struct Node)); if(S == NULL) { printf("sorry! malloc is failed!"); return NULL; } else { S->Next = NULL; MakeEmpty(S);//confirm the stack is emptystack } return S;}int IsEmpty(Stack S){ return S->Next == NULL;}void MakeEmpty(Stack S){ if(S == NULL) printf("Please creatstack first!"); while(!IsEmpty(S)) Pop(S);}void DiseposeStack(Stack S){ PtrToNode P, Tmp; P = S->Next; S->Next = NULL; while(P != NULL) { Tmp = P->Next; free(P); P = Tmp; }}void Push(Stack S, ElementType x){ PtrToNode NewCell; NewCell = (Stack)malloc(sizeof(struct Node)); if(NewCell == NULL) printf("Sorry! malloc is failed!"); else { NewCell->Element = x; NewCell->Next = S->Next; S->Next = NewCell; } }void Pop(Stack S){ PtrToNode FirstCell; if(IsEmpty(S)) printf("Sorry the stack is empty!"); else { FirstCell = S->Next; S->Next = FirstCell->Next; //S->Next = S->Next->Next;//这样最安全 free(FirstCell); }}ElementType Top(Stack S){ if(!IsEmpty(S)) return S->Next->Element; printf("Sorry! the stack is empty"); return 0;}ElementType PopAndTop(Stack S){ PtrToNode FirstCell; ElementType FirstElement; if(IsEmpty(S)) printf("Sorry the stack is empty!"); else { FirstCell = S->Next; FirstElement = S->Next->Element; S->Next = S->Next->Next; free(FirstCell); return FirstElement; }}

 

转载于:https://www.cnblogs.com/Crel-Devi/p/9460968.html

你可能感兴趣的文章
环套树
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
eclipse的调试方法的简单介绍
查看>>
加固linux
查看>>
IPSP问题
查看>>
HNU 10362 A+B for Input-Output Practice (II)
查看>>
10.17动手动脑
查看>>
WPF中Image显示本地图片
查看>>
Windows Phone 7你不知道的8件事
查看>>
脚本删除文件下的文件
查看>>
实用拜占庭容错算法PBFT
查看>>
java的二叉树树一层层输出,Java构造二叉树、树形结构先序遍历、中序遍历、后序遍历...
查看>>
php仿阿里巴巴,php实现的仿阿里巴巴实现同类产品翻页
查看>>
Node 中异常收集与监控
查看>>