代码搜索:LinkStack
找到约 226 项符合「LinkStack」的源代码
代码结果 226
www.eeworm.com/read/475959/6771393
h linkstack.h
#ifndef LINKSTACK_CLASS
#define LINKSTACK_CLASS
#include
#include
using namespace std;
#include "link.h"
template
class LinkStack
{ LinkedList StackList;
www.eeworm.com/read/248954/12530192
h linkstack.h
#ifndef LINKSTACK_CLASS
#define LINKSTACK_CLASS
#include
#include
using namespace std;
#include "link.h"
template
class LinkStack
{ LinkedList StackList;
www.eeworm.com/read/247431/12659338
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/247431/12659341
class linkstack.class
www.eeworm.com/read/171268/9763881
c 3.1linkstack.c
/*链栈*/
#include "stdio.h"
#define Maxsize 100
typedef struct node
{
int data;
struct node *next;
}StackNode,*LinkStack;
LinkStack top;
int y;
LinkStack Init_LinkStack()
{
www.eeworm.com/read/246158/12753283
cpp 5链栈的操作.cpp
#include
struct linkstack
{
int data;
linkstack *next;
};
linkstack *Push_LinkStack(linkstack *top,int x)
{
linkstack *s;
s=new linkstack;
s->data=x;
s->next=top;
top=s
www.eeworm.com/read/290930/8450313
cpp 链式堆栈.cpp
//* * * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :3 (3_3) *
//*PROGRAM :链式堆栈 *
//*CONTENT :初始化,入栈,出栈,取栈顶元素 *
//*
www.eeworm.com/read/271876/10977493
cpp 链式堆栈 .cpp
//* * * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :3 (3_3) *
//*PROGRAM :链式堆栈 *
//*CONTENT :初始化,入栈,出栈,取栈顶元素 *
//*
www.eeworm.com/read/458268/7299964
cpp 链式堆栈.cpp
//* * * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :3 (3_3) *
//*PROGRAM :链式堆栈 *
//*CONTENT :初始化,入栈,出栈,取栈顶元素 *
//*
www.eeworm.com/read/458268/7300028
cpp 链式堆栈.cpp
//* * * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :3 (3_3) *
//*PROGRAM :链式堆栈 *
//*CONTENT :初始化,入栈,出栈,取栈顶元素 *
//*