c++學習:一個簡單的類

來源:互聯網
上載者:User

/*************************************************
 * 棧                                            *
 *    實現簡單stack類的棧                        *
 *************************************************/
#include<iostream>
#include<cstdlib>
#include<assert.h>
using namespace std;
const int STACK_SIZE = 100; //the max size of this stack;
/**************************************************
 * stack 類                                       *
 * 成員函數                                       *
 *  init ——初始化棧                             *
 *  push -- 在棧中放入一個元素                    *
 *  pop  -- 彈出棧中頂部元素                      *
 **************************************************/

class stack {
private:
 int count; //elememt of this stack;
 int data[STACK_SIZE]; //元素本身
public:
 //初始化棧
 void init();
 //將一個元素壓到棧中
 void push(const int item);
 //從棧中彈出一個元素
 int pop();
};
/*************************************************
 *stack::init--初始化棧                          *
 *************************************************/

inline void stack::init()
{
 count = 0;//棧清零
}
/**************************************************
 * stack::push --將一個元素壓到棧中;             *
 * 警告:這裡沒有檢查棧時候溢出                   *
 * 入口參數                                       *
 * item:要放入的元素                              *
 **************************************************/

inline void stack::push(const int item)
{
 assert((count >= 0)&&
      (count < sizeof (data)/sizeof (data[0])));
 data[count] = item;
 ++count;
}
/*************************************************
 * stack::pop --將一個元素從棧中彈出             *
 *警告:這裡沒有檢查棧是否溢出                   *
 *返回                                           *
 *棧的頂部元素                                   *
 *************************************************/
inline int stack::pop()
{
 //棧下一位
 count--;
 return (data[count]);
}

//簡單測試
void main()
{
 stack  a_stack;//準備使用棧

    a_stack.init();

 a_stack.push(1);
 a_stack.push(2);
 a_stack.push(3);

 cout<< "expect a 3:"<<a_stack.pop() <<"/n";
 cout<< "expect a 2:"<<a_stack.pop() <<"/n";
 cout<< "expect a 1:"<<a_stack.pop() << "/n";
 
 
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.