代码搜索:Stack

找到约 10,000 项符合「Stack」的源代码

代码结果 10,000
www.eeworm.com/read/363596/9943611

h stack.h

/* $Id: stack.h 6 2007-01-22 00:45:22Z drhanson $ */ #ifndef STACK_INCLUDED #define STACK_INCLUDED #define T Stack_T typedef struct T *T; extern T Stack_new (void); extern int Stack_empty(T stk
www.eeworm.com/read/363596/9943692

c stack.c

static char rcsid[] = "$Id: stack.c 6 2007-01-22 00:45:22Z drhanson $"; #include #include "assert.h" #include "mem.h" #include "stack.h" #define T Stack_T struct T { int count; struct ele
www.eeworm.com/read/363545/9948527

s stack.s

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. ;;; ;;; Startup Code for ;;; HMS720
www.eeworm.com/read/363544/9948605

s stack.s

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. ;;; ;;; Startup Code for ;;; HMS720
www.eeworm.com/read/363543/9948653

s stack.s

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. ;;; ;;; Startup Code for ;;; HMS720
www.eeworm.com/read/363542/9948710

s stack.s

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. ;;; ;;; Startup Code for ;;; HMS720
www.eeworm.com/read/363541/9948771

s stack.s

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. ;;; ;;; Startup Code for ;;; HMS720
www.eeworm.com/read/363449/9950809

cpp stack.cpp

// Borland C++ - (C) Copyright 1991 by Borland International // stack.cpp: Implementation of the Stack class // from Hands-on C++ #include #include "stack.h" int Stack::push(in
www.eeworm.com/read/363449/9950900

h stack.h

// Borland C++ - (C) Copyright 1991 by Borland International // stack.h: A Stack class derived from the List class #include "list.h" class Stack : public List { int top; public:
www.eeworm.com/read/363449/9950955

cpp stack.cpp

/*------------------------------------------------------------------------*/ /* */ /* STACK.CPP