代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/451454/7463541
s stack.s
;;; Copyright ARM Ltd 2001. All rights reserved.
AREA Stacks, DATA, NOINIT
EXPORT top_of_stacks
; Create dummy variable used to locate stacks in memory
top_of_stacks
www.eeworm.com/read/450886/7475276
h stack.h
#include
#include
//出错控制函数
void Error(char * message)
{
fprintf(stderr, "Error: %s\n",message);
exit(1);
}
// 定义栈类型
#define StackSize 100
typedef char Datatype;
typed
www.eeworm.com/read/450789/7476795
h stack.h
/* stack.h: header file for stack handling functions
bob wilson
01/20/2003
*/
void push(int);
int pop(void);
www.eeworm.com/read/450789/7476796
c stack.c
#include
#include "stack.h"
#define MAXVAL 100 /* maximum depth of val stack */
/* even better, we could make the following two defines "static"
and thus hide these data
www.eeworm.com/read/450669/7478534
h stack.h
#ifndef STACK_H_
#define STACK_H_
#include"Node.h"
/****************************************************************/
template
class Stack{
public:
Stack();
bool empty()
www.eeworm.com/read/450127/7490203
o stack.o
www.eeworm.com/read/450127/7490211
o stack.o
www.eeworm.com/read/450127/7490223
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/449679/7498639
nec stack.nec
CM Stack example
CE
GW 1 21 -285 -210.79 480 -285 210.79 480 0.3335
GW 2 21 -213 -198.13 480 -213 198.13 480 0.34
GW 3 21 -125 -196.43 480 -125 196.43 480 0.341
GW 4 21 74 -193.64 480 74 1
www.eeworm.com/read/449576/7500410
h stack.h
#include "common.h"
#define STACK_INIT_SIZE 100//定义栈的初始长度
#define STACKINCREMENT 10 //定义栈每次追加分配的长度
//实现栈的数据类型
typedef struct{
SElemType *elem;
int top;
int stacksize;
}Stack;
//栈的各项操作的实现