代码搜索:LinkStack
找到约 226 项符合「LinkStack」的源代码
代码结果 226
www.eeworm.com/read/222762/14675209
cpp pop_l.cpp
//Pop_L.cpp
//This program is to pop LinkStack
# include
# include
# include
# define Stack_Length 6
# define OK 1
# define ERROR 0
typedef int SElemType;
ty
www.eeworm.com/read/222762/14675215
cpp push_l.cpp
//Push_L.cpp
//This program is to push LinkStack
# include
# include
# include
# define Stack_Length 6
# define OK 1
# define ERROR 0
typedef int SElemType;
www.eeworm.com/read/207214/15279512
h stack.h
// STACK.h: interface for the STACK class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STACK_H__A26E636D_3992_4944_9342_A3C3E4E6D910__INCLUDED_)
#d
www.eeworm.com/read/369421/9649008
cpp gettop_l.cpp
//GetTop_L.cpp
//This program is to get the top element of LinkStack
# include
# include
# include
# define Stack_Length 6
# define OK 1
# define ERROR 0
type
www.eeworm.com/read/369421/9649014
cpp pop_l.cpp
//Pop_L.cpp
//This program is to pop LinkStack
# include
# include
# include
# define Stack_Length 6
# define OK 1
# define ERROR 0
typedef int SElemType;
ty
www.eeworm.com/read/369421/9649019
cpp push_l.cpp
//Push_L.cpp
//This program is to push LinkStack
# include
# include
# include
# define Stack_Length 6
# define OK 1
# define ERROR 0
typedef int SElemType;
www.eeworm.com/read/239079/13303654
java test.java
class Test{
public static void main(String[] args)
{
LinkStack MyLinkStack = new LinkStack();
MyLinkStack.push("1");
MyLinkStack.push("2");
MyLinkStack.push("3");
MyLinkSt
www.eeworm.com/read/242824/4534091
cpp linkstackmain.cpp
//LinkStackMain.cpp
#include //引用输入输出流
using namespace std;
#include "LinkStack.cpp" //引入成员函数文件
void main( )
{
LinkStacka; //创建模板类的实例
if (a.Empty( )){
www.eeworm.com/read/404609/2301768
cpp linkstackmain.cpp
//LinkStackMain.cpp
#include //引用输入输出流
using namespace std;
#include "LinkStack.cpp" //引入成员函数文件
void main( )
{
LinkStacka; //创建模板类的实例
if (a.Empty( )){
www.eeworm.com/read/181725/9240074
h infix.h
#include"Priority.h"
//中缀类Infix的声明,类Infix封装着中缀表达式的运算功能
class Infix
{
private:
int a,b;
char Theta;
LinkStack OPND;
LinkStack OPTR;
public:
Infix();