代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/229959/14310455
h stack.h
#ifndef __STACK_H
#define __STACK_H
class stack
{
}
#endif
www.eeworm.com/read/128124/14314673
h stack.h
#include
#include
#ifndef STACK_H
#define STACK_H
template class Stack;
template
class StackNode
{
friend class Stack;
private:
Ty
www.eeworm.com/read/128123/14314699
hpp stack.hpp
#include
#include
template class Stack;
template
class StackNode
{
private:
friend class Stack;
Type data;
StackNode* link;
www.eeworm.com/read/229349/14344055
s stack.s
;/****************************************************************************
; * stack.s: stack assembler file for Philips LPC214x Family Microprocessors
; *
; * Copyright(C) 2006, Philips Se
www.eeworm.com/read/127651/14344757
java stack.java
import java.util.*;
public class Stack
{
Vector stk;
public Stack()
{
stk = new Vector();
}
//----------------------------------------
public void push(Object obj)
{
stk.ad
www.eeworm.com/read/127651/14344846