代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/114622/15045077
cpp stack.cpp
// File referred to (not printed) on page 141 in "Thinking in C++" by Bruce Eckel
//////////////////////////////////////////////////
// From the compressed package ECKELT02.ZIP 4/11/95
// (Original
www.eeworm.com/read/114622/15045095
h stack.h
// File from page 140 in "Thinking in C++" by Bruce Eckel
//////////////////////////////////////////////////
// From the compressed package ECKELT02.ZIP 4/11/95
// (Original ECKELT01.ZIP dated 2/21
www.eeworm.com/read/114613/15046016
c stack.c
www.eeworm.com/read/215253/15066233
h stack.h
#include
#include
#include
const int length=30;
const int capacity=100;
struct node
{
int encode;
int readdr;//short for relative address
www.eeworm.com/read/215252/15066242
h stack.h
#include
const int length=100;
class stack
{
private:
int size;
char array[length];
public:
stack()
{
size=0;
}
void push(char ch)
{
if(size
www.eeworm.com/read/215251/15066249
h stack.h
#include
const int length=30;//the length of identier no more than 30 bytes
const int capacity=200; //the capacity of the stack is 50
struct node
{
int encode;
int
www.eeworm.com/read/214878/15085315
h stack.h
#ifndef STACK_H_
#define STACK_H_
#include "list.h"
#include "StartConv.h"
template
class stack : list // Private inheritance
{
public:
int size( ) const
{ r
www.eeworm.com/read/214672/15092382
h stack.h
// stack.h
// Data structures for a "stack" -- a Last-In-First-Out list of integers.
//
// Copyright (c) 1992,1993,1995 The Regents of the University of California.
// All rights reserved. See copyri
www.eeworm.com/read/214672/15092386
cc stack.cc
// stack.cc
// Routines to implement a LIFO stack of integers.
//
// The stack is represented as an array; we return an error
// if the caller tries to push more things onto the stack than we have
//
www.eeworm.com/read/214444/15099967
s stack.s
;;; Copyright ARM Ltd 2001. All rights reserved.
AREA Stacks, DATA, NOINIT
EXPORT UserStack
EXPORT SVCStack
EXPORT UndefStack
EXPORT IRQStack