php 链式队列,C++_C++中实现队列类链式存储与栈类链式存储的代码示例,队列类链式存储 代码: linkqu - phpStudy...

该博客介绍了如何使用C++实现链式存储的队列和栈类。通过`LinkQueue`和`LinkStack`模板类,展示了如何进行入队、出队、入栈、出栈等基本操作。`LinkList`类作为底层的链表结构,支持插入、获取、删除节点等操作。博客还提供了测试程序来验证队列和栈的功能。
摘要由CSDN通过智能技术生成

C++中实现队列类链式存储与栈类链式存储的代码示例

队列类链式存储

代码:

linkqueue.hpp

// 队列类

#pragma once

#include "linklist.hpp"

template

class LinkQueue

{

public:

LinkQueue();

~LinkQueue();

public:

int clear();

int append(T &t);

int retieve(T &t);

int header(T &t);

int length();

protected:

LinkList *m_list;

};

template

LinkQueue::LinkQueue()

{

m_list = new LinkList < T > ;

}

template

LinkQueue::~LinkQueue()

{

clear();

delete m_list;

m_list = NULL;

}

template

int LinkQueue::clear()

{

T t;

while (m_list->getLen() > 0) {

m_list->del(0, t);

}

return 0;

}

template

int LinkQueue::append(T &t)

{

return m_list->insert(t, m_list->getLen());

}

template

int LinkQueue::retieve(T &t)

{

return m_list->del(m_list->getLen() - 1, t);

}

template

int LinkQueue::header(T &t)

{

return m_list->get(0, t);

}

template

int LinkQueue::length()

{

return m_list->getLen();

}

main.cpp

// 队列类测试程序

#include

#include

#include "linkqueue.hpp"

using namespace std;

struct Student

{

char name[32];

int age;

};

void play()

{

Student s1, s2, s3;

s1.age = 21;

s2.age = 22;

s3.age = 23;

LinkQueue lq; // 创建队列

lq.append(s1); // 入队列

lq.append(s2);

lq.append(s3);

Student tmp;

lq.header(tmp);

cout << "header of queue: " << tmp.age << endl;

cout << "length of queue: " << lq.length() << endl;

while (lq.length() > 0) {

lq.retieve(tmp);

cout << tmp.age << " ";

}

cout << endl;

lq.clear();

}

int main()

{

play();

return 0;

}

栈类链式存储

linkstack.hpp

// 栈类

#pragma once

#include "linklist.hpp"

template

class LinkStack

{

public:

LinkStack();

~LinkStack();

public:

int clear();

int push(T &t);

int pop(T &t);

int top(T &t);

int size();

protected:

LinkList *m_list;

};

template

LinkStack::LinkStack()

{

m_list = new LinkList < T > ;

}

template

LinkStack::~LinkStack()

{

clear();

delete m_list;

m_list = NULL;

}

template

int LinkStack::clear()

{

T t;

while (m_list->getLen() > 0) {

m_list->del(0, t);

}

return 0;

}

template

int LinkStack::push(T &t)

{

return m_list->insert(t, 0);

}

template

int LinkStack::pop(T &t)

{

return m_list->del(0, t);

}

template

int LinkStack::top(T &t)

{

return m_list->get(0, t);

}

template

int LinkStack::size()

{

return m_list->getLen();

}

main.cpp

// 链式存储栈类的测试程序

#include

#include

#include "linkstack.hpp"

using namespace std;

struct Student

{

char name[32];

int age;

};

void play()

{

Student s1, s2, s3;

s1.age = 21;

s2.age = 22;

s3.age = 23;

LinkStack ls; // 创建栈

// 入栈

ls.push(s1);

ls.push(s2);

ls.push(s3);

// 获取栈顶元素

Student tmp;

ls.top(tmp);

cout << "top of stack: " << tmp.age << endl;

cout << "size of stack: " << ls.size() << endl;

// 出栈

while (ls.size() > 0) {

ls.pop(tmp);

}

ls.clear();

}

int main()

{

play();

return 0;

}

linklist.h

// 链表类

#pragma once

#include

#include

using namespace std;

template

struct Node

{

T t;

Node *next;

};

template

class LinkList

{

public:

LinkList();

~LinkList();

public:

int clear();

int insert(T &t, int pos);

int get(int pos, T &t);

int del(int pos, T &t);

int getLen();

protected:

Node *header;

int length;

};

template

LinkList::LinkList()

{

header = new Node < T > ;

header->next = NULL;

length = 0;

}

template

LinkList::~LinkList()

{

Node *tmp = NULL;

while (header) {

tmp = header->next;

delete header;

header = tmp;

}

}

template

int LinkList::clear()

{

~LinkList();

LinkList();

return 0;

}

template

int LinkList::insert(T &t, int pos)

{

Node *cur = NULL;

// 对pos的容错处理

if (pos >= length) {

pos = length;

}

cur = header;

for (int i = 0; i < pos; ++i) {

cur = cur->next;

}

// 把上层应用的t结点缓存到容器中

Node *node = new Node < T > ;

node->next = NULL;

node->t = t; // 把t缓存到容器中

node->next = cur->next;

cur->next = node;

++length;

return 0;

}

template

int LinkList::get(int pos, T &t)

{

Node *cur = NULL;

if (pos >= length) {

return -1;

}

cur = header;

for (int i = 0; i < pos; ++i) {

cur = cur->next;

}

t = cur->next->t; // 把pos位置的结点赋值给t

return 0;

}

template

int LinkList::del(int pos, T &t)

{

Node *cur = NULL;

if (pos >= length) {

return -1;

}

cur = header;

for (int i = 0; i < pos; ++i) {

cur = cur->next;

}

Node *ret = NULL;

ret = cur->next;

t = ret->t; // 把缓存的结点给上层应用t

// 删除操作

cur->next = ret->next;

--length;

delete ret; // 注意释放内存,因为insert的时候new Node

return 0;

}

template

int LinkList::getLen()

{

return length;

}

相关阅读:

thinkphp配置连接数据库技巧

Android动画之补间动画(Tween Animation)实例详解

ASP.NET Forms身份认证详解

Linux系统安装时提示boot efi 没有分配空间的解决办法

js简单实现删除记录时的提示效果

oracle指定排序的方法详解

PHP实现的下载远程图片自定义函数分享

win8如何把系统右下角小喇叭找回来?

jQuery制作仿Mac Lion OS滚动条效果

Android中编写属性动画PropertyAnimation的进阶实例

C#基于委托实现多线程之间操作的方法

MySQL抛出Incorrect string value异常分析

Phonegap使用拍照功能时的内存问题

Win10预览版10074:官方内容修复和已知问题详解

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值