代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/274450/10871416
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/419339/10873564
h stack.h
#ifndef STACK_H
#define STACK_H
#include "poly.h"
typedef struct stack *stack;
stack newStack ();
void stackPush (stack stk, poly x);
poly stackPop (stack stk);
int stackIsEmpty (stack stk);
int st
www.eeworm.com/read/419339/10873566
c stack.c
#include "mystdlib.h"
#include "linkedList.h"
#include "stack.h"
struct stack
{
linkedList l;
};
stack newStack ()
{
stack stk = checkedMalloc (sizeof (*stk));
stk->l = newLinkedList ();
ret
www.eeworm.com/read/274284/10878533
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/274284/10878603
o stack.o
www.eeworm.com/read/419115/10885571
cpp stack.cpp
// stack implementation objective version
#include
#include
#define maxlen 80
class stack {
char str1[maxlen];
int first;
public:
void clear(void);
ch
www.eeworm.com/read/274170/10886472
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/273782/10901441
c stack.c
www.eeworm.com/read/273782/10901447
h stack.h
www.eeworm.com/read/273782/10901467