代码搜索:LinkStack
找到约 226 项符合「LinkStack」的源代码
代码结果 226
www.eeworm.com/read/386291/8757572
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/386291/8757576
class linkstack.class
www.eeworm.com/read/382750/9003373
opt linkstack.opt
www.eeworm.com/read/382750/9003376
ncb linkstack.ncb
www.eeworm.com/read/382750/9003378
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/382750/9003382
plg linkstack.plg
Build Log
--------------------Configuration: LinkStack - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\AAA
www.eeworm.com/read/382750/9003387
h linkstack.h
#include "public.h"
typedef int SElemType;
typedef struct s_node
{
SElemType data;
struct s_node *Next;
}SNode,*SNodePtr;
class LinkStack{
SNodePtr top;
int Length;
www.eeworm.com/read/382750/9003391
cpp linkstack.cpp
// LinkStack.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "LinkStack.h"
#include "conio.h"
#include "stdlib.h"
#include "iostream.h"
Status Lin
www.eeworm.com/read/382750/9003393
dsp linkstack.dsp
# Microsoft Developer Studio Project File - Name="LinkStack" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/167649/9957167
h linkstack.h
struct Node
{ Node_entry entry; // data members
Node *next;
Node( ){ next=NULL; } // constructors
Node(Node_entry item, Node *add_on = NULL); // construct