代码搜索:Stack

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

代码结果 10,000
www.eeworm.com/read/135620/5883619

h stack.h

#include #include template class Stack{ public: Stack(int=10); ~Stack(){delete []elements;} void Push(const Type& item); Type Pop();
www.eeworm.com/read/135620/5883653

h stack.h

#include #include const MaxStack=100; template class Stack{ public: Stack(const int=MaxStack); ~Stack(){delete []elements;} void Push(const Ty
www.eeworm.com/read/135620/5883735

h stack.h

#include #include template class Stack{ public: Stack(int=10); ~Stack(){delete []elements;} void Push(const Type& item); Type Pop();
www.eeworm.com/read/134053/5895443

aso stack.aso

;-------------------------- ;-- Define Stack objects -- ;-------------------------- INCLUDE list.aso GLOBAL PASCAL stack_insert:near GLOBAL PASCAL stack_delete:near GLOBAL PASCAL stack_first
www.eeworm.com/read/134053/5895446

asm stack.asm

;-------------------------- ;-- Define Stack objects -- ;-------------------------- MODEL SMALL LOCALS ;** Define Stack object ** INCLUDE stack.aso ;** Create instance of stack virtual
www.eeworm.com/read/133731/5903101

cpp stack.cpp

/*------------------------------------------------------------------------*/ /* */ /* STACK.CPP
www.eeworm.com/read/133731/5903150

h stack.h

/*------------------------------------------------------------------------*/ /* */ /* STACK.H
www.eeworm.com/read/131315/5935349

c stack.c

/* * This value indicates an amount of reserved memory for a stack * in executables - see source of a startup code for details. * It can be changed without recompilation with fixstk.ttp utility. *
www.eeworm.com/read/131315/5936575

h stack.h

/* stack.h - structed access to object stacks Copyright (C) 1988 Free Software Foundation, Inc. Contributed by Michael Tiemann (tiemann@cygnus.com). This program is free software; you can redis
www.eeworm.com/read/131315/5936989

h stack.h

/* * Copyright (c) 1984, 1985 Xerox Corp. * * stack.h -- elements of the RES stack. */ /* stack element types */ #define type_number 1 #define type_string 2 #define typ