代码搜索:Stack

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

代码结果 10,000
www.eeworm.com/read/284556/8919265

h stack.h

// stack.h // Data structures for a "stack" -- a Last-In-First-Out list of integers. // // Copyright (c) 1992,1993,1995 The Regents of the University of California. // All rights reserved. See copyri
www.eeworm.com/read/284556/8919276

cc stack.cc

// stack.cc // Routines to implement a LIFO stack of integers. // // The stack is represented as an array; we return an error // if the caller tries to push more things onto the stack than we have //
www.eeworm.com/read/186304/8945988

v stack.v

/*****************************************/ /** 8bit RISC MCU desing **/ /** stack module **/ /** BY yuzhijie **/ /** 2006.10.2
www.eeworm.com/read/284229/8952952

java stack.java

/* * Created on 2004-12-2 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package calculator; public class St
www.eeworm.com/read/283884/8983531

as callfunction-stack.as

// /usr/bin/makeswf -s 200x150 -o callfunction-stack.swf callfunction-stack.as trace ("Check that function calls using empty stack work as expected"); function foo () { trace (arguments.length);
www.eeworm.com/read/283884/8983568

as empty-stack.as

// /usr/bin/makeswf -s 200x150 -o empty-stack.swf empty-stack.as trace ("Check that the empty stack is treated as unlimited undefined values"); asm { pop trace };
www.eeworm.com/read/382883/8992476

cpp stack.cpp

#include using namespace std; #include #include #include using namespace std; int in(char c) //是符号就返回0,不是返回1。 { int a; switch (c) { case
www.eeworm.com/read/382777/9000608

c stack.c

#ifndef STACK_INCLD #define STACK_INCLD #include #define STACK_SIZE sizeof(struct node) #define DEBUG #ifdef DEBUG typedef int ElemType; #endif typedef struct node * Stack; st
www.eeworm.com/read/283548/9007991

s stack.s

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

h stack.h