链表实现栈

思路:链表实现栈比较自然,而且这里使用了双链表,单链表也够用。链表实现的栈个人感觉就是灵活性强一点,复杂度方面不如数组实现。

代码:

// linkedliststack.cpp : 定义控制台应用程序的入口点。
// 链表实现栈

#include "stdafx.h"
#include <iostream>

using std::cin;
using std::cout;
using std::endl;
using std::cerr;

//点结构
typedef struct Node {
	int data;
	Node *prev; //指向前驱结点
	Node *next; //指向后继结点
};

//链表结构
typedef struct Linkedlist {
	Node *head;
};

//插入结点
void push(Linkedlist &L, Node *x)
{
	x->next = L.head;
	if (L.head != nullptr)
		L.head->prev = x;
	L.head = x;
	x->prev = nullptr;
}

//删除头结点
int pop(Linkedlist &L)
{
	if (L.head == nullptr)
	{
		cerr << "stack underflow!" << endl;
		return -1;
	}
	else
	{
		int temp = L.head->data;
		if (L.head->next != nullptr)
			L.head = L.head->next;
		else
			L.head = nullptr;

		return temp;
	}
}

void traverse(Linkedlist L)
{
	cout << "current stack:";
	Node *x = L.head;
	while (x)
	{
		cout << x->data << " ";
		x = x->next;
	}
	cout << endl;
}

int main()
{
	int temp;
	Linkedlist L;
	L.head = nullptr;
	Node *x;
	int cmd;
	while (cin>>cmd)
	{
		switch (cmd)
		{
		case 1:
			cin >> temp;
			x = new Node;
			x->data = temp;
			push(L, x);
			traverse(L);
			x = nullptr;
			break;
		case 2:
			cout << pop(L) << endl;
			traverse(L);
			break;
		default:
			cerr << "error command!" << endl;
			break;
		}
	}

	system("pause");
	return 0;
}


运行结果:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值