代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/289150/6311957
cpp stack.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
USERES("stack.res");
USEFORM("main.cpp", Form1);
//---------------------------------
www.eeworm.com/read/154729/6348269
bak stack.bak
www.eeworm.com/read/154729/6348281
err stack.err
#include
第 1 行发生错误: 文件不存在。
int putbox(int) void build(int top) void caculate(int x) void clear(void) int w=4,l=3,h=5 int wb=10,lb=10,hb=10 int height[100][100] int side[20][3]={1,1,1,4,3,
www.eeworm.com/read/154729/6348292
fxp stack.fxp
www.eeworm.com/read/368258/6348835
h stack.h
// file: stack.h
#include "com_def.h"
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
// 定义栈数据类型
/*
typedef struct
{
int date;
}ElemType;
*/
typedef enum _STACK_Status
www.eeworm.com/read/368258/6348836
c stack.c
// file: stack.c
#include "stack.h"
#include "malloc.h"
#include "string.h"
// 构造一个空栈
bool InitStack(SqStack *S, uint8 elemsize)
{
S->base = (byte *)malloc(STACK_INIT_SIZE* elemsize);
www.eeworm.com/read/145285/6350542
c stack.c
#include
#include
#define Max 100
int *p;
int *tos;
int *bos;
/*添加一个数据放到堆栈对顶端*/
void push(int i)
{
if(p > bos)
{
printf("堆栈以满\n");
return;
}
*p = i;
p+
www.eeworm.com/read/223932/6357992
class stack.class
www.eeworm.com/read/494272/6380990
h stack.h
www.eeworm.com/read/493890/6384187
map stack.map
Start Stop Length Name Class
00000H 03195H 03196H _TEXT CODE
03196H 03242H 000ADH STACK_TEXT CODE
03250H 03250H 00000H _FARDATA FAR_DATA
03