代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/183958/9128775
h stack.h
#include
#include
typedef char* ElementType;
struct Stack
{
ElementType *base;
int top;
int StackSize;
};
void InitStack (Stack *S, int MaxSize);
void Destro
www.eeworm.com/read/183958/9128779
dsw stack.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/183958/9128781
plg stack.plg
Build Log
--------------------Configuration: stack - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~
www.eeworm.com/read/183958/9128785
dsp stack.dsp
# Microsoft Developer Studio Project File - Name="stack" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Con
www.eeworm.com/read/183958/9128787
cpp stack.cpp
#include
#include
#include "stack.h"
//typedef int ElementType;
void InitStack (Stack *S, int MaxSize)
{
S->base = new ElementType[MaxSize];
S->top = 0;
S->StackSi
www.eeworm.com/read/183768/9140850
h stack.h
/**************************************************
* Essential C++ -- Stanley Lippman
* Addison-Wesley
* ISBN 0-201-48518-4
* homepage: www.objectwrite.com
* email: slippman@objectwrite.co
www.eeworm.com/read/281673/9142079
cpp stack.cpp
//: C04:Stack.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Linked list with nesting
#inc
www.eeworm.com/read/281673/9142098
h stack.h
//: C04:Stack.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Nested struct in linked list
#ifnde
www.eeworm.com/read/183425/9159355
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/380114/9162463