我是靠谱客的博主 孤独黑猫,最近开发中收集的这篇文章主要介绍懒猫老师:栈的链式储存,链表的实现,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <iostream>
using namespace std;

//template <class DataType>
struct Node {
	int data;
	struct Node* next;
};
class LinkStack {
private:
	Node* top;
public:
	LinkStack();
	~LinkStack();
	void push(int x);
	int pop();
	int getpop();
	bool isEmpty();
 };
LinkStack::LinkStack() {
	top = NULL;
}
LinkStack::~LinkStack() {
	while (top != NULL) {
		Node* s = top;
		top = top->next;
		delete(s);
	}
}
void LinkStack::push(int x) {
	Node* s1;
	s1 = new Node;
	s1->data = x;
	s1->next = top;
	top = s1;
}
int LinkStack::pop() {
	int x;
	x = top->data;
	top = top->next;
	return x;
}
int LinkStack::getpop() {
	int x;
	x = top->data;
	return x;
}
bool LinkStack::isEmpty() {
	if (top == NULL)
		return 1;
	else
		return 0;
}
int main() {
	LinkStack st;
	st.push(1);
	st.push(2);
	st.push(3);
	int x1=st.getpop();
	cout << x1 << endl;
	st.pop();
	st.pop();
	st.isEmpty();
	st.pop();
	st.isEmpty();
}

最后

以上就是孤独黑猫为你收集整理的懒猫老师:栈的链式储存,链表的实现的全部内容,希望文章能够帮你解决懒猫老师:栈的链式储存,链表的实现所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(30)

评论列表共有 0 条评论

立即
投稿
返回
顶部