代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/161417/5554228
s79 cstartup.s79
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------
www.eeworm.com/read/158865/5593031
c alloca.c
/* alloca.c -- allocate automatically reclaimed memory
(Mostly) portable public-domain implementation -- D A Gwyn
This implementation of the PWB library alloca function,
which is used to all
www.eeworm.com/read/158865/5593067
c alloca.c
/* alloca.c -- allocate automatically reclaimed memory
(Mostly) portable public-domain implementation -- D A Gwyn
This implementation of the PWB library alloca function,
which is used to all
www.eeworm.com/read/156960/5608122
cpp p2-107.cpp
#include
const int MAX=5; //假定栈中最多保存5个数据
//定义名为stack的具有栈功能的类
class stack {
//数据成员
double num[MAX]; //存放栈数据的数组
int top; //指示栈顶位置的变量
public:
//成
www.eeworm.com/read/156960/5608130
cpp p2-103.cpp
#include
const int MAX=5; //假定栈中最多保存5个数据
//定义名为stack的具有栈功能的类
class stack {
//数据成员
float num[MAX]; //存放栈数据的数组
int top; //指示栈顶位置的变量
public:
//
www.eeworm.com/read/156960/5608201
cpp p4-178.cpp
#include
//定义栈的尺寸
const int SIZE = 100;
//定义处理栈的类模板接口
template class stack {
T stck[SIZE];
int tos;
public:
stack(void) {
tos = 0;
cout
www.eeworm.com/read/156553/5611404
arm cstartup.arm
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------
www.eeworm.com/read/155901/5617807
java cstack.java
package de.tsr.jsol.util;
import java.util.Stack;
import de.tsr.jsol.logic.*;
public class CStack {
private Stack _stack;
public CStack() {
_stack = new Stack();
}
public Card peek()
www.eeworm.com/read/152934/5655123
s79 cstartup.s79
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------
www.eeworm.com/read/152934/5655147
s79 cstartup.s79
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------