代码搜索:Stack

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

代码结果 10,000
www.eeworm.com/read/359624/10133461

o stack.o

www.eeworm.com/read/359624/10133491

o stack.o

www.eeworm.com/read/164050/10134031

m stack.m

function ST=stack(v) % 调用格式 % ST=stack 创建一个"空"堆栈对象. % ST=stack(v) 创建包含变量v的堆栈对象。 if nargin>1;error('Too many arguments.');end; if nargin==0 % 没有输入宗量情况 Q=queue; s.value=[];
www.eeworm.com/read/163970/10135818

s stack.s

;/****************************************Copyright (c)************************************************** ;** 广州周立功单片机发展有限公司 ;** 研
www.eeworm.com/read/163958/10137147

gif stack.gif

www.eeworm.com/read/163958/10137799

gif stack.gif

www.eeworm.com/read/359499/10142093

cs stack.cs

using System; using System.Collections ; namespace Interpreter { /// /// Summary description for Stack. /// public class Stack { ArrayList stk; public Stack()
www.eeworm.com/read/358784/10179674

asm stack.asm

TITLE Program Template (Stack.asm) ; Testing PUSH and POP, 16-bit and 32-bit operands ; Last update: 11/16/01 Include Irvine32.inc .code main PROC call DumpRegs push 1 call Dump
www.eeworm.com/read/358682/10182092

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/358682/10182096

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