代码搜索:MyStack

找到约 249 项符合「MyStack」的源代码

代码结果 249
www.eeworm.com/read/219654/14871586

cpp mystack.cpp

www.eeworm.com/read/116228/14982380

java mystack.java

/** * This is the stack class for the program. * It is made up of the linked list. * It can do th push, pop, peek operations as the stack requires. * Besides,user can search for the
www.eeworm.com/read/116228/14982381

class mystack.class

www.eeworm.com/read/114927/15033895

h mystack.h

#ifndef MYSTACK_H #define MYSTACK_H #include #define MaxNum 30 template class SepStack{ DataType *pdata; int t; public: SepStack(); int isEmptyStack();
www.eeworm.com/read/181187/5278187

h mystack.h

//Header file: myStack.h #ifndef H_StackType #define H_StackType #include #include #include "stackADT.h" using namespace std; template class stackTy
www.eeworm.com/read/181187/5278308

h mystack.h

//Header file: myStack.h #ifndef H_StackType #define H_StackType #include #include #include "stackADT.h" using namespace std; template class stackTy
www.eeworm.com/read/181187/5278326

h mystack.h

//Header file: myStack.h #ifndef H_StackType #define H_StackType #include #include #include "stackADT.h" using namespace std; template class stackTy
www.eeworm.com/read/181187/5278331

h mystack.h

//Header file: myStack.h #ifndef H_StackType #define H_StackType #include #include #include "stackADT.h" using namespace std; template class stackTy
www.eeworm.com/read/181187/5278342

h mystack.h

//Header file: myStack.h #ifndef H_StackType #define H_StackType #include #include #include "stackADT.h" using namespace std; template class stackTy
www.eeworm.com/read/295787/3909034

java mystack.java

package com.itjob.data; public class MyStack { DoubleLink datas = new DoubleLink(); public void push(Object data){ datas.add(data); } public Object pop(){ return datas.pop();