代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/100043/6275018
c stack.c
/*
* $Id: Stack.c,v 1.8 1998/07/22 20:36:34 wessels Exp $
*
* AUTHOR: Alex Rousskov
*
* SQUID Internet Object Cache http://squid.nlanr.net/Squid/
* ---------------------------------------------
www.eeworm.com/read/100043/6275074
h stack.h
/*
* $Id: Stack.h,v 1.8 1998/07/20 17:18:48 wessels Exp $
*
* AUTHOR: Alex Rousskov
*
* SQUID Internet Object Cache http://squid.nlanr.net/Squid/
* ---------------------------------------------
www.eeworm.com/read/140130/6283266
cpp stack.cpp
#include "stdafx.h"
#include "stack.h"
stack::stack()
{
pbottom = ptop = NULL;
}
void stack::Push(int mark)
{
StackNode* p = new StackNode;
p->mark = mark;
p->pnext = NULL;
if(pbottom
www.eeworm.com/read/140130/6283293
h stack.h
struct StackNode
{
int mark;
struct StackNode* pnext;
};
typedef struct StackNode StackNode;
class stack
{
public:
StackNode* ptop;
StackNode* pbottom;
public:
stack();
void Push(
www.eeworm.com/read/213265/6289173
s stack.s
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
;;;
;;; Startup Code for
;;; HMS720
www.eeworm.com/read/353852/6300448
s stack.s
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
;;;
;;; Startup Code for
;;; HMS720
www.eeworm.com/read/365282/6305789
s stack.s
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved.
;;;
;;; Startup Code for
;;; HMS720
www.eeworm.com/read/160234/6306331
s stack.s
;;; Copyright ARM Ltd 2001. All rights reserved.
AREA Stacks, DATA, NOINIT
EXPORT UserStack
EXPORT SVCStack
EXPORT UndefStack
EXPORT IRQStack
www.eeworm.com/read/289150/6311951
bpr stack.bpr
# ---------------------------------------------------------------------------
!if !$d(BCB)
BCB = $(MAKEDIR)\..
!endif
# --------------------------------------------------------------------------
www.eeworm.com/read/289150/6311956