代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/456367/7350891
h stack.h
// stack.h -- class definition for the stack ADT
#ifndef STACK_H_
#define STACK_H_
typedef unsigned long Item;
class Stack
{
private:
enum {MAX = 10}; // constant specific to class
www.eeworm.com/read/456367/7350895
cpp stack.cpp
// stack.cpp -- Stack member functions
#include "stack.h"
Stack::Stack() // create an empty stack
{
top = 0;
}
bool Stack::isempty() const
{
return top == 0;
}
bool Stack::isf
www.eeworm.com/read/453695/7414365
o stack.o
www.eeworm.com/read/453695/7414381
o stack.o
www.eeworm.com/read/453695/7414399
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/453390/7421838
cpp stack.cpp
// Stack.cpp: implementation of the Stack class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "TONFA.h"
#include "Stack.h"
#ifdef _D
www.eeworm.com/read/453390/7421862
obj stack.obj
www.eeworm.com/read/453390/7421885
h stack.h
// Stack.h: interface for the Stack class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STACK_H__5CAEE47D_32FE_4763_AB7E_D1E6EC36A1B1__INCLUDED_)
#d
www.eeworm.com/read/452756/7433303
class stack.class
www.eeworm.com/read/452756/7433358