数据结构与算法分析课后习题第三章(11)

本文详细介绍了如何使用单链表高效地实现无头尾节点的栈(SListStack)和队列(SListQueue),以及利用循环数组(CircularArray)实现队列。代码包括了链表节点定义、栈和队列的操作如push、pop、print等方法。此外,还展示了如何用C++模板类实现这些数据结构。
摘要由CSDN通过智能技术生成

 3.31 Efficiently implement a stack class using a singly linked list, with no header or tail nodes.

3.32 Efficiently implement a queue class using a singly linked list, with no header or tail nodes.

3.33 Efficiently implement a queue class using a circular array. You may use a vector (rather than an primitive array) as the underlying array structure.

//3.31-3.32  slist.hpp

#ifndef SSList_HPP__
#define SSList_HPP__

template< typename Object >
class SListStack;

template< typename Object >
class SListQueue;

#include <iostream>

template< typename Object >
class SList {
private:
 class Node {
 public:
  Node(const Object& val = Object(), Node* n = 0)
   : next(n), data(val){}

 public:
  Node* next;
  Object data;
 };
public:
 SList() : theSize(0), head(0),tail(0){}
 ~SList()
 {

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值