代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/129125/14264367
class stack.class
www.eeworm.com/read/129125/14264424
java stack.java
public class Stack
{
private Node top;
public Stack()
{
top = null;
}
public void push(Object obj)
{
Node node = new Node(obj);
node.next
www.eeworm.com/read/129125/14264433
class stack.class
www.eeworm.com/read/129125/14264478
java stack.java
public class Stack
{
private Node top;
public Stack()
{
top = null;
}
public void push(Object obj)
{
Node node = new Node(obj);
node.next
www.eeworm.com/read/129125/14264499
class stack.class
www.eeworm.com/read/129098/14267009
h stack.h
/************************************************************
Title: Operator-Precedence Parsing
Author: Dake Song, Class 0201 of Computer Science
Date: Mar.18 of 2005
*********
www.eeworm.com/read/128742/14280038
h stack.h
/****************************************************************************
*
* Copyright (C) 1991 Kendall Bennett.
* All rights reserved.
*
* Filename: $RCSfile: stack.h $
* Versio
www.eeworm.com/read/128424/14299224
h stack.h
#include
template class Stack
{
public:
Stack (int=50);
~Stack() {delete [] elements;}
void Push( const Type &item);
Type Pop();
Type GetTop();
void Mak
www.eeworm.com/read/128423/14299261
cpp stack.cpp
//------------------------------------------------------------
// 栈相关函数
// 创建于2002年4月3日
//------------------------------------------------------------
#include "Stack.h"
#include "gamelib\g
www.eeworm.com/read/128423/14299479
h stack.h
//------------------------------------------------------------
// 栈相关函数
// 创建于2002年4月3日
//------------------------------------------------------------
#ifndef _STACK_H_
#define _STACK_H_
#in