代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/297233/8040943
h stack.h
/* stack.h - structed access to object stacks
Copyright (C) 1988 Free Software Foundation, Inc.
Contributed by Michael Tiemann (tiemann@cygnus.com).
This program is free software; you can redis
www.eeworm.com/read/397473/8043691
vi stack.vi
www.eeworm.com/read/296910/8072603
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/296910/8072624
o stack.o
www.eeworm.com/read/296910/8072655
o stack.o
www.eeworm.com/read/296805/8076306
htm stack.htm
public class Stack {
private int[] data;
private int ptr;
public Stack(int size) {
data = new int[size];
ptr = 0;
}
public
www.eeworm.com/read/296805/8076309
java stack.java
public class Stack
{
private int[] data;
private int ptr;
public Stack(int size)
{
data = new int[size];
ptr = 0;
}
public void push(int x)
www.eeworm.com/read/296805/8076491
h stack.h
/* stack.h: Declarations for a stack of ints */
void stk_push(int);
int stk_pop(void);
int stk_top(void);
int stk_size(void);
int stk_error(void);
www.eeworm.com/read/296805/8076495
c stack.c
/* stack.c: implementation */
#include "stack.h"
/* Private data: */
#define MAX 10
static int error = 0; /* error flag */
static int data[MAX]; /* the stack */
static int ptr; /*
www.eeworm.com/read/296805/8076508
htm stack.htm
/* stack.c: implementation */
#include "stack.h"
/* Private data: */
#define MAX 10
static int error = 0; /* error flag */
static int data[MAX]; /* the stack */