代码搜索:Stack

找到约 10,000 项符合「Stack」的源代码

代码结果 10,000
www.eeworm.com/read/182685/9195349

cpp stack.cpp

// Stack.cpp: implementation of the CStack class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "mineDabse.h" #include "Stack.h" #ifd
www.eeworm.com/read/182685/9195359

h stack.h

// Stack.h: interface for the CStack class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_STACK_H__544C06A3_A370_4A4F_ACFE_F3F2517BC5E6__INCLUDED_) #
www.eeworm.com/read/379460/9196563

h stack.h

#include "common.h" extern NODE *OperandHead,*OperatorHead; NODE *PushOperand ( NODE *Source ); NODE *PopOperand ( void ); NODE *PushOperator ( NODE *Source ); NODE *Pop
www.eeworm.com/read/379460/9196575

cpp stack.cpp

#include "common.h" #include "stack.h" NODE *OperandHead = NULL; NODE *OperatorHead = NULL; NODE *PushOperand ( NODE *Source ) { NODE *tmp; tmp = (NODE*) malloc (sizeof (NODE));
www.eeworm.com/read/182664/9196975

class stack.class

www.eeworm.com/read/182664/9197098

class stack.class

www.eeworm.com/read/182664/9197230

class stack.class

www.eeworm.com/read/182636/9198230

ncb stack.ncb

www.eeworm.com/read/182636/9198233

opt stack.opt

www.eeworm.com/read/182636/9198237

h stack.h

#define StackSize 100 //定义栈的大小 typedef char DataType; //栈的数据类型 struct SeqStack{ //结构体定义栈 DataType data[StackSize]; int top; //栈顶指针 }; void InitStack(SeqStack *S); //初始化堆栈 int StackEmpt