代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/315999/13532652
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/306600/13741485
h 栈的存储结构.h
//文件名:栈的存储结构
#define STACK_INIT_SIZE 10 /* 存储空间初始分配量 */
#define STACK_INCREMENT 2 /* 存储空间分配增量 */
typedef struct SqStack
{
SElemType *base; /* 在栈构造之前和销毁之后,base的值为NULL */
SElemType *
www.eeworm.com/read/131315/5935295
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.
This
www.eeworm.com/read/131315/5936145
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.
This
www.eeworm.com/read/131315/5936648
h input.h
/* Source file current line is coming from. */
extern char *input_filename;
/* Top-level source file. */
extern char *main_input_filename;
/* Line number in current source file. */
extern int lin
www.eeworm.com/read/131315/5938872
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.
This
www.eeworm.com/read/131315/5939692
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.
This
www.eeworm.com/read/127704/6002072
c solo_main.c
/*
* Copyright (C) 1996-1998 by the Board of Trustees
* of Leland Stanford Junior University.
*
* This file is part of the SimOS distribution.
* See LICENSE file for terms of the license.
www.eeworm.com/read/126411/6017611
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.
Thi
www.eeworm.com/read/112918/6142700
fix lib_3.1_1.fix
===================================================================
RCS file: /afs/w3.org/hypertext/WWW/Library/Repository/Implementation/HTML.c,v
retrieving revision 1.43
diff -c -r1.43 HTML.c
*** 1.