代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/120747/6071058
s stack.s
/*
* stack.S: diag stack
*
* Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
*
* $Id: stack.S,v 1.1 2001/10/28 22:14:20 erikm Exp $
*
* This program is free software; you can r
www.eeworm.com/read/117227/6105092
stack dawn.stack
# dawn.stack package - Dawn package to handle stack (dup, drop, ...)
org.jext.dawn.stack.ClearFunction
org.jext.dawn.stack.DepthFunction
org.jext.dawn.stack.DropFunction
org.jext.dawn.stack.DropnFunc
www.eeworm.com/read/116971/6112157
java stack.java
import java.util.*;
// Can you spot the "memory leak"?
public class Stack {
private Object[] elements;
private int size = 0;
public Stack(int initialCapacity) {
this.elem
www.eeworm.com/read/116971/6112176
java stack.java
// Page 47
import java.util.*;
public class Stack implements Cloneable {
private Object[] elements;
private int size = 0;
public Stack(int initialCapacity) {
this.eleme
www.eeworm.com/read/116006/6115651
h stack.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l
www.eeworm.com/read/116006/6115675
cpp stack.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l
www.eeworm.com/read/115892/6116329
js stack.js
// Description: js.util.Stack 类
// Author: Changhua.Wan
// Version: 2004.01.26.01
_package("js.util");
_import("js.lang.Object");
_import("js.util.ArrayList");
function js.util.Stack() {
www.eeworm.com/read/107846/6188198
c stack.c
#include
#include
#define Max 100
int *p;
int *tos;
int *bos;
/*添加一个数据放到堆栈对顶端*/
void push(int i)
{
if(p > bos)
{
printf("堆栈以满\n");
return;
}
*p = i;
p+
www.eeworm.com/read/106490/6192605
java stack.java
//==============================================================
// Stack.java - Stack (extended LinkedList) class
//
// Java学习源代码检索系统 Ver 1.0 20031015 免费正式版
// 版权所有: 中国IT认证实验室(www.ChinaITLab.com)