栈的C++单链表实现

该博客介绍了如何使用C++通过单链表结构实现栈的功能。内容包括创建链表表头、入栈操作、出栈操作、栈的反转、打印栈元素以及清空栈的代码实现,并提供了对应的测试用例及运行结果。
摘要由CSDN通过智能技术生成

使用C风格的实现,栈的内部使用单链表结构实现。实现接口为:创建表头、入栈、出栈、反转、打印、清空

代码结构如下:

SingleList.h:数据结构的声明和定义

main.cpp:测试数据结构:

SingleList.h:

#pragma once
#include<iostream>
#include<string.h>

using namespace std;
struct Node{
	int num;
	Node* next;
};
typedef Node* pNode;
typedef pNode ListHead;

bool IsEmpty(ListHead head);
ListHead InitSingleList();
bool DestroySingleList(ListHead head);
bool Push(ListHead head,int a);
bool Pop(ListHead head, int & a);
bool ReverseSingleList(ListHead* head);
void PrintSingleList(ListHead head);
void PrintError(const char * pMsg){cout << pMsg << endl; }

ListHead InitSingleList()
{
	pNode pnode = new Node;
	if (!pnode)
	{
		PrintError("Create Null ptr");
		return NULL;
	}
	pnode->num = 0;
	pnode->next = NULL;
	return pnode;
}
bool IsEmpty(ListHead head)
{

	if (head->next == NULL)
	{
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值