棧(stack)的數組表示

來源:互聯網
上載者:User

棧的主要功能是:
bool Push(T val); //往棧頂添加元素val

T Top(); //返回棧頂元素的值

T Pop();//取出棧頂元素,並刪除

 

void Clear(); //清空棧

bool IsEmpty();//判斷是否為空白

int Size();//返回元素個數

 棧的數組表示

#include <iostream>

using namespace std;

int static SIZE = 100;

 

template<class T>

class Stack

{

private:

int top; //棧頂元素索引

int size;

int maxSize;

T* pArray;

public:

Stack(int stackSize = SIZE){

maxSize = stackSize;

pArray = new T[maxSize];

size = 1;

top = -1;

}

~Stack(void){delete
[] pArray;}

 

bool Push(T val){ //添加棧頂元素

if(IsFull()){

cout<<"stack is full"<<endl;

returnfalse;

}

top++;

pArray[top] = val;

size++;

return true;

}

 

T Top(){  //返回棧頂元素

if(IsEmpty()) {

cout<<"stack is empty"<<endl;

return NULL;

}

return pArray[top];

}

 

T Pop(){ //返回棧頂元素,並刪除

if(IsEmpty()){

cout<<"stack is empty"<<endl;

return NULL;

}

size--;

return pArray[top--];

}

 

void Clear(){ top = -1;size = 0;}

bool IsEmpty(){return
size == 0? true:false;}

bool IsFull() {return
size == maxSize?true:false;}

int Size(){return
size;}

};

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.