代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/237638/13940178
cpp 11_5.cpp
//11_5
#include
#include "stack.h"
void main()
{
Stack sta;
sta.Put(10);
sta.Put(12);
sta.Put(14);
cout
www.eeworm.com/read/204605/15336694
txt 练习.txt
20.1
#include
#include
template T min(T a,T b)
{
return a
www.eeworm.com/read/113613/15452249
c alloca.c
/* alloca.c -- allocate automatically reclaimed memory
(Mostly) portable public-domain implementation -- D A Gwyn
This implementation of the PWB library alloca function,
which is used to
www.eeworm.com/read/110993/15520680
cpp inheritstack2.cpp
//: C14:InheritStack2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
//{L} ../C13/Stack4
//
www.eeworm.com/read/109611/15553507
c alloca.c
/* alloca.c -- allocate automatically reclaimed memory
(Mostly) portable public-domain implementation -- D A Gwyn
This implementation of the PWB library alloca function,
which is used to
www.eeworm.com/read/108043/15596008
c alloca.c
/* alloca.c -- allocate automatically reclaimed memory
(Mostly) portable public-domain implementation -- D A Gwyn
This implementation of the PWB library alloca function,
which is used to
www.eeworm.com/read/106262/15642255
h astack.h
class Stack
{ // Array-based stack class
private:
int size; // Maximum size of stack
int top; // Index for top ELEM
ELEM *li
www.eeworm.com/read/106262/15642272
h lstack.h
class Stack { // Linked stack class
private:
link *top; // Pointer to top stack ELEM
public:
Stack(const int sz =LIST_SIZE) // Constructor: initialize
{ t
www.eeworm.com/read/104056/15710870
c alloca.c
/* alloca.c -- allocate automatically reclaimed memory
(Mostly) portable public-domain implementation -- D A Gwyn
This implementation of the PWB library alloca function,
which is used to all
www.eeworm.com/read/102552/15772029
htm subject_23012.htm
序号:23012 发表者:longren 发表日期:2002-11-30 15:14:58
主题:头文件的问题
内容:#include"iostream.h"#include"stdlib.h"#include"stack.h"struct Stack{ int stack[30];