代码搜索:Stack

找到约 10,000 项符合「Stack」的源代码

代码结果 10,000
www.eeworm.com/read/441840/7664093

h c3-1.h

#define STACK_INIT_SIZE 10 #define STACK_INCREMENT 2 struct SqStack { SElemType *base; SElemType *top; int stacksize; };
www.eeworm.com/read/439490/7707737

c astack.c

#include #define MAX 100 int stack[MAX + 1]; int top; void khoi_tao_stack() { top = -1; } int is_empty() { return (top == -1); } int is_full() { return (top ==
www.eeworm.com/read/436521/7768676

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/436022/7778661

ld flash.ld

/*** Linker Script File ***/ /* Hitex/Gn/07.09.2006 */ /* Memory Definitions */ /* Philips LPC23XX */ /* Flash usage */ MEMORY { IntCodeFlash (rx) : ORIGIN = 0x00000000, LENGTH = 500k In
www.eeworm.com/read/436017/7778777

ld flash.ld

/*** Linker Script File ***/ /* Hitex/Gn/07.09.2006 */ /* Memory Definitions */ /* Philips LPC23XX */ /* Flash usage */ MEMORY { IntCodeFlash (rx) : ORIGIN = 0x00000000, LENGTH = 500k In
www.eeworm.com/read/297233/8039215

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/296025/8128073

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/142572/12939185

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/325892/13176583

h c3-1.h

// c3-1.h 栈的顺序存储结构。在教科书第46页 #define STACK_INIT_SIZE 10 // 存储空间初始分配量 #define STACK_INCREMENT 2 // 存储空间分配增量 struct SqStack // 顺序栈 { SElemType *base; // 在栈构造之前和销毁之后,base的值为NULL SElemType *to
www.eeworm.com/read/138638/13227288

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