代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/465673/7051664
cmd stack.cmd
/* vectors.obj */
/* iir1.obj */
/* -o iir1.out */
/* -m iir1.map */
/* -e start */
MEMORY
{
PAGE 0:
EPROM: org = 0E000H len = 1000H
VECS: org = 0
www.eeworm.com/read/465675/7051677
cmd stack.cmd
/* vectors.obj */
/* iir1.obj */
/* -o iir1.out */
/* -m iir1.map */
/* -e start */
MEMORY
{
PAGE 0:
EPROM: org = 0E000H len = 1000H
VECS: org = 0
www.eeworm.com/read/465676/7051691
cmd stack.cmd
/* vectors.obj */
/* iir1.obj */
/* -o iir1.out */
/* -m iir1.map */
/* -e start */
MEMORY
{
PAGE 0:
EPROM: org = 0E000H len = 1000H
VECS: org = 0
www.eeworm.com/read/465682/7051729
cmd stack.cmd
/* SOLUTION FILE FOR FIR5.CMD */
/* fir5.obj */
/* vectors.obj */
/* -o fir5.out */
/* -m fir5.map */
/* -e start */
MEMORY
{
PAGE 0:
EPROM: org = 0E000H len = 01F80H
www.eeworm.com/read/464867/7061536
h stack.h
#define STACK_INIT_SIZE 10
#define STACK_INCREMENT 2
struct SqStack
{
SElemType *base;
SElemType *top;
int stacksize;
};
www.eeworm.com/read/464867/7061540
cpp stack.cpp
void InitStack(SqStack &S)
{
S.base =(SElemType*)malloc(sizeof(SElemType)*STACK_INIT_SIZE);
if(!S.base )
exit(OVERFLOW);
S.top =S.base ;
S.stacksize =STACK_INIT_SIZE;
}
void DestroyStack
www.eeworm.com/read/341341/7071880
h stack.h
#include
#include
typedef struct
{
datatype a[maxsize];
int top;
}stack;
void initiate(stack * s)
{
s->top=0;
}
int empty(stack s) /* 为便于调用时进行判断,将堆栈空设为0,不空设为1*/
{
www.eeworm.com/read/221037/7097285
o stack.o
www.eeworm.com/read/221037/7097301
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/392599/7110022
h stack.h
#ifndef STACK //避免重复包含
#define STACK
#define Stack_init_size 100
#define StackIncreament 10
//定义一个栈类型
typedef struct{
int *base;
int *top;
int stacksize;
}Sqstack;
//定义栈的基本操作
int I