代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5527167
c 921208-2.c
#define STACK_REQUIREMENT (100000 * 4 + 1024)
#if defined (STACK_SIZE) && STACK_SIZE < STACK_REQUIREMENT
main () { exit (0); }
#else
g(){}
f()
{
int i;
float a[100000];
for (i = 0; i < 1; i++
www.eeworm.com/read/158865/5593897
asm ntstack.asm
# Allocate stack for NT, inserting stack probes every 4k pages
.file "ntstack.asm"
# Setup MS Structured-Exception-Handling
.pdata
.align 2
.ualong ..__allocate_stack,__allocate_stack.e,0,0,__al
www.eeworm.com/read/474431/6809328
c g_client.c
/*
** A client that uses the generic stack module to create two stacks
** holding different types of data.
*/
#include
#include
#include "g_stack.h"
/*
** Create two sta
www.eeworm.com/read/471505/6895062
cpp analysestack.cpp
/*//此文件是保存分析栈的类,并能输出到文件analyse_tree.txt
typedef struct Stack
{
string analyse_stack;
string action;
};
class AnalyseStack
{
private:
vector vc_analyseStack;
public:
Analyse
www.eeworm.com/read/293882/8266698
h c3-1.h
// c3-1.h 栈的顺序存储表示
#define STACK_INIT_SIZE 10 // 存储空间初始分配量
#define STACK_INCREMENT 2 // 存储空间分配增量
struct SqStack
{
SElemType *base; // 在栈构造之前和销毁之后,base的值为NULL
SElemType *top; // 栈顶指针
www.eeworm.com/read/173105/9673823
c ex2.c
#include "tcclib.h"
#define N 20
int nb_num;
int tab[N];
int stack_ptr;
int stack_op[N];
int stack_res[60];
int result;
int find(int n, int i1, int a, int b, int op)
{
int i, j;
int c;
www.eeworm.com/read/235539/14064858
h c3-1.h
// c3-1.h 栈的顺序存储表示
#define STACK_INIT_SIZE 10 // 存储空间初始分配量
#define STACK_INCREMENT 2 // 存储空间分配增量
struct SqStack
{
SElemType *base; // 在栈构造之前和销毁之后,base的值为NULL
SElemType *top; // 栈顶指针
www.eeworm.com/read/235539/14064955
h c3-1.h
// c3-1.h 栈的顺序存储表示
#define STACK_INIT_SIZE 10 // 存储空间初始分配量
#define STACK_INCREMENT 2 // 存储空间分配增量
struct SqStack
{
SElemType *base; // 在栈构造之前和销毁之后,base的值为NULL
SElemType *top; // 栈顶指针
www.eeworm.com/read/109611/15553547
c alloca.c
/*
alloca -- (mostly) portable public-domain implementation -- D A Gwyn
last edit: 86/05/30 rms
include config.h, since on VMS it renames some symbols.
Use xmalloc instead of malloc.
www.eeworm.com/read/107347/15608656
cpp scripttypes.cpp
#include "stdafx.h"
#include "ScriptTypes.h"
ProgramInstance::ProgramInstance() {
sleeping = false;
dead = false;
programTemplate = NULL;
a = 0;
stack = new StackItem[