代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/399858/7830102
txt 车厢调度.txt
#include
#include
#include
typedef int SElemType;
typedef int Status;
int end;/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
/*---------------------栈的数据结构
www.eeworm.com/read/434704/7847209
c 12_5_2.c
/* ======================================== */
/* 程式实例: 12_5_2.cpp */
/* 堆叠类别实作 - 串列 */
/* ======================================== */
#include
www.eeworm.com/read/434700/7848875
c 5_8.c
/* ======================================== */
/* 程式实例: 5_8.c */
/* 应用栈来走迷宫 */
/* ======================================== */
#include
www.eeworm.com/read/397820/8020079
txt 2.txt
#include
#include
#include
typedef int SElemType;
typedef int Status;
int end;/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
/*---------------------栈的数据结构----------
www.eeworm.com/read/297233/8042128
h input.h
/* Declarations for variables relating to reading the source file.
Used by parsers, lexical analyzers, and error message routines.
Copyright (C) 1993, 1997 Free Software Foundation, Inc.
This f
www.eeworm.com/read/105773/8072645
asm
NAME MAINPro ;目标模块名
;
extrn code (call1);声明外部c51函数
PROG SEGMENT CODE
;CONST SEGMENT CODE
;VAR1 SEGMENT DATA
;BITVAR SEGMENT BIT
STACK SEGMENT IDATA
RSEG STACK
DS 10H ; 16 Bytes St
www.eeworm.com/read/396583/8099653
a51 os_cpu_a.a51
$NOMOD51
;
; The uC/OS II port for Dallas 80C390 on Keil C51 V7
;
; Ported date: Dec 2, 2003
; By: Stuart Wright (swright@jiskoot.com)
; Target platform: Keil C51 V7.07 and a
www.eeworm.com/read/146221/12663122
cpp aaa.cpp
//(1)S->aAcBe
//(2)A->b
//(3)A->Ab
//(4)B->d
#include
#include
#include
#define stack_size 20
#define stackincrement 10
int p=0,q=0,zh,sh,x;
cha
www.eeworm.com/read/332183/12774336
h task2.h
const int maxstack = 10;
#define Stack_H
#ifndef Stack_H
//#include
typedef char Stack_entry;
enum Error_code
{
success,overflow,underflow
};
class Stack
{
public:
www.eeworm.com/read/244888/12838501
c 12_5_2.c
/* ======================================== */
/* 程式实例: 12_5_2.cpp */
/* 堆叠类别实作 - 串列 */
/* ======================================== */
#include