代码搜索:Stack

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

代码结果 10,000
www.eeworm.com/read/439693/7702902

mmp stack.mmp

/* * ============================================================================ * Name : Stack.mmp * Part of : Stack * Created : 03.12.2005 by ToBeReplacedByAuthor * Description: *
www.eeworm.com/read/439125/7716490

s stack.s

;;; Copyright ARM Ltd 2001. All rights reserved. AREA Stacks, DATA, NOINIT EXPORT top_of_stacks ; Create dummy variable used to locate stacks in memory top_of_stacks
www.eeworm.com/read/438832/7725435

sh stack.sh

#!/bin/bash # stack.sh: 模拟下推堆栈 # 类似于CPU栈, 下推堆栈依次保存数据项, #+ 但是取数据时, 却反序进行, 后进先出. BP=100 # 栈数组的基址指针. # 从元素100开始. SP=$BP # 栈指针. # 将其初
www.eeworm.com/read/437354/7750526

java stack.java

public class Stack { public StackNode stackTop; public int count; public void push(T info) { StackNode node = new StackNode(); node.info =
www.eeworm.com/read/436538/7768141

cpp stack.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/436538/7768151

cpp stack.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/436521/7768667

c a_stack.c

/* ** A stack implemented with a static array. The array size can ** be adjusted only by changing the #define and recompiling ** the module. */ #include "stack.h" #include #define
www.eeworm.com/read/436521/7768674

h stack.h

/* ** Interface for a stack module */ #define STACK_TYPE int /* Type of value on the stack */ /* ** push ** Pushes a new value on the stack. The argument is the value ** to be pushed. */
www.eeworm.com/read/436514/7768792

cpp stack.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/436120/7776312

c stack.c

/* 标准文档模板 */ #include #include #define TRUE 1 #define FALSE 0 #define MAX 20 struct stack /*定义栈s*/ { char date[MAX]; int top; }s; int push(char ch)