实现基本栈和队列

首先我们来看一下基本实现栈
这里写图片描述

#pragma once

// 静态栈
//template<class T, size_t N = 100>
//class Stack
//{
//public:
//  void Push(const T& x)
//  {
//      if (_size == N)
//      {
//          throw out_of_range("stack is full");
//      }
//
//      _a[_size++] = x;
//  }
//
//  void Pop()
//  {
//      assert(_size > 0);
//      --_size;
//  }
//
//  T& Top()
//  {
//      return _a[_size-1];
//  }
//protected:
//  T _a[N];
//  size_t _size;
//};

template<class T>
class Stack()
{
public:
    Stack()
        :_a(NULL)
        ,_size(0)
        ,_capacity(0)
    {}

    void Push(const T& x)
    {
        CheckCapacity();

        _a[_size++] = x;
    }

    void Pop()
    {
        assert(_size > 0);
        --_size;
    }

    T& Top()
    {
        assert(_size > 0);
        return _a[_size-1];
    }

    void CheckCapacity()
    {
        if (_size >= _capacity)
        {
            _capacity = _capacity*2+3;
            T* tmp = new T[_capacity];
            if (_a)
            {
                for (size_t i = 0; i < _size; ++i)
                    tmp[i] = _a[i];

                delete[] _a;
                _a = tmp;
            }
        }
    }

protected:
    T* _a;
    size_t _size;
    size_t _capacity;
};

接下来是队列
这里写图片描述

#pragma once

template<class T>
struct QueueNode()
{
   T _data;
   QueueNode<T>* _next;
}
#include <class T>
class Queue
{
    typedef QueueNode<T> Node;
public:
    Queue()
        ;_head(NULL)
        ,_tail(NULL)
    {}

    void Push(const T& x)
    {
        if(_head == NULL)
        {
            _head = _tail = new Node(x);
        }
        else
        {
            _tail->_next = new Node(x);
            _tail = _tail->_next;
        }
    }

    void Pop()
    {
        if(_head == NULL)
        {
            return;
        }
        else if(_head == _tail)
        {
            delete _head;
            _head = _tail = NULL;
        }
        else
        {
            Node* next = _head->_next;
            delete _head;
            _head = next;
        }
    }

    bool Empty()
    {
        return _head == NULL;
    }

    size_t size()
    {
        size_t size = 0;
        Node* cur = _head;
        while(cur)
        {
            ++size;
            cur = cur->_next;
        }
        return size;
    }
protected:
    Node* _head;
    Node* _tail;
};

void TestQueue()
{
    Queue<int> q;
    q.Push(1);
    q.Push(2);
    q.Push(3);
    q.Push(4);
    while(!q.Empty())
    {
        q.Pop();
    }
    cout<<endl;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值