代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/357088/10216365
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/356710/10222741
h stack.h
www.eeworm.com/read/356710/10222771
c stack.c
www.eeworm.com/read/356710/10222772
txt stack.txt
www.eeworm.com/read/356710/10222774
h stack.h
www.eeworm.com/read/356710/10222779
c stack.c
www.eeworm.com/read/356710/10222783
h stack.h
www.eeworm.com/read/356710/10222827
c stack.c
www.eeworm.com/read/356710/10222830
txt stack.txt
www.eeworm.com/read/356298/10232249
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+