代码搜索:LinkStack
找到约 226 项符合「LinkStack」的源代码
代码结果 226
www.eeworm.com/read/242824/4534094
dsp linkstack.dsp
# Microsoft Developer Studio Project File - Name="
www.eeworm.com/read/195829/5107207
h linkstack.h
#define TRUE 1
#define FALSE 0
typedef struct node
{
StackElementType data;
struct node *next;
}LinkStackNode;
typedef LinkStackNode *LinkStack;
/*进栈操作。*/
int Push(LinkStack top, Stac
www.eeworm.com/read/303129/3815397
h linkstack.h
#define TRUE 1
#define FALSE 0
typedef struct node
{
StackElementType data;
struct node *next;
}LinkStackNode;
typedef LinkStackNode *LinkStack;
/*进栈操作。*/
int Push(LinkStack top, Stac
www.eeworm.com/read/284098/4067885
java linkstack.java
// linkStack.java
// demonstrates a stack implemented as a list
// to run this program: C>java LinkStackApp
////////////////////////////////////////////////////////////////
class Link
{
pu
www.eeworm.com/read/441706/1768934
java linkstack.java
// linkStack.java
// demonstrates a stack implemented as a list
// to run this program: C>java LinkStackApp
////////////////////////////////////////////////////////////////
class Link
{
pu
www.eeworm.com/read/404609/2301767
dsw linkstack.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/404609/2301769
h linkstack.h
//LinkStack.h
#ifndef LINKSTACK_H
#define LINKSTACK_H
template
struct Node
{
T data;
Node *next; //此处也可以省略
};
template
class LinkStack
{
public:
www.eeworm.com/read/404609/2301770
cpp linkstack.cpp
//LinkStack.cpp
#include "LinkStack.h"
/*
* 前置条件:栈不存在
* 输 入:无
* 功 能:栈的初始化
* 输 出:无
* 后置条件:构造一个空栈
*/
template
LinkStack::LinkStack( )
{
top=NULL;
}
/*
*
www.eeworm.com/read/404609/2301771
dsp linkstack.dsp
# Microsoft Developer Studio Project File - Name="
www.eeworm.com/read/363195/2922330
java linkstack.java
// linkStack.java
// demonstrates a stack implemented as a list
// to run this program: C>java LinkStackApp
////////////////////////////////////////////////////////////////
class Link
{
pu