代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/436048/7777855
cpp stack.cpp
// Stack.cpp: implementation of the Stack class.
//
//////////////////////////////////////////////////////////////////////
#include "Stack.h"
//////////////////////////////////////////////////
www.eeworm.com/read/436048/7777861
obj stack.obj
www.eeworm.com/read/436048/7777869
h stack.h
// Stack.h: interface for the Stack class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STACK_H__89F64B38_4DD7_4735_841D_BDD1FCF1DD34__INCLUDED_)
#d
www.eeworm.com/read/435301/7794188
obj stack.obj
www.eeworm.com/read/435301/7794199
h stack.h
# ifndef STACK_H
# define STACK_H
# include
# include
# include //断言
# include "Stacknode.h"
template
class stack
{
public:
stack():
www.eeworm.com/read/299960/7817856
s stack.s
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
;;;
;;; Startup Code for
;;; HMS720
www.eeworm.com/read/299954/7818930
s stack.s
;*******************************************************************************
;* *
;* Copyright (C) 2006 Oki Electri
www.eeworm.com/read/199740/7825762
h stack.h
//stack.h
#ifndef STACK
#define STACK
struct Node{
int a;
Node* next;
};
class Stack{
public:
Stack();
~Stack();
void Put(int item);
int Get();
protected:
Node* head;
www.eeworm.com/read/199740/7825784
cpp stack.cpp
//stack.cpp
#include "stack.h"
#include
#include
Stack::Stack():head(NULL){}
void Stack::Put(int item)
{
Node* p = new Node;
p->a = item;
p->next = head;
www.eeworm.com/read/399904/7826741
h stack.h
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,