代码搜索:Stack

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

代码结果 10,000
www.eeworm.com/read/388617/8595186

h stack.h

// stack.h -- class definition for the stack ADT #ifndef STACK_H_ #define STACK_H_ typedef unsigned long Item; class Stack { private: enum {MAX = 10}; // constant specific to class
www.eeworm.com/read/388617/8595200

cpp stack.cpp

// stack.cpp -- Stack member functions #include "stack.h" Stack::Stack() // create an empty stack { top = 0; } bool Stack::isempty() const { return top == 0; } bool Stack::isf
www.eeworm.com/read/388617/8596295

h stack.h

// stack.h -- class definition for the stack ADT #ifndef STACK_H_ #define STACK_H_ typedef unsigned long Item; class Stack { private: enum {MAX = 10}; // constant specific to class
www.eeworm.com/read/388617/8596306

cpp stack.cpp

// stack.cpp -- Stack member functions #include "stack.h" Stack::Stack() // create an empty stack { top = 0; } bool Stack::isempty() const { return top == 0; } bool Stack::isf
www.eeworm.com/read/432517/8598080

h stack.h

/* * Copyright (c) 2000-2008 * Author: Weiming Zhou * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without f
www.eeworm.com/read/432517/8598112

c stack.c

/* * Copyright (c) 2000-2008 * Author: Weiming Zhou * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without f
www.eeworm.com/read/388511/8605204

h stack.h

//stack.h的代码//头文件部分 //函数结果状态代码 #include"stdio.h" #include "stdlib.h" #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLOW -2 #define NULL
www.eeworm.com/read/432289/8613921

h stack.h

//: C05:Stack.h // From Thinking in C++, 2nd Edition // at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Nested structs via linked list #ifndef STACK_
www.eeworm.com/read/288263/8645594

s stack.s

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

h stack.h

// Stack abtract class template class Stack { public: // Reinitialize the stack. The user is responsible for // reclaiming the storage used by the stack elements. virtual void