代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/115861/14999057
c stack.c
/*****************************************************************
* HMMER - Biological sequence analysis with profile HMMs
* Copyright (C) 1992-1999 Washington University School of Medicine
* All
www.eeworm.com/read/216515/15005040
h stack.h
template
struct node
{
T value;
node *next;
};
template
class stack
{
public:
char Err[35];
node *First;
int Count;
stack(){Count = 0;strcpy(Err,"");Fi
www.eeworm.com/read/216506/15005426
h stack.h
/* Copyright 2007 Stefan Webb
This file is part of Burstsort.
Burstsort is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
www.eeworm.com/read/216506/15005447
cpp stack.cpp
/* Copyright 2007 Stefan Webb
This file is part of Burstsort.
Burstsort is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
www.eeworm.com/read/115447/15014235
h stack.h
#include
#include
//出错控制函数
void Error(char * message)
{
fprintf(stderr, "Error: %s\n",message);
exit(1);
}
// 定义栈类型
#define StackSize 100
typedef char Datatype;
typed
www.eeworm.com/read/216429/15014309
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/216426/15014342
s stack.s
;/****************************************Copyright (c)**************************************************
;** 广州周立功单片机发展有限公司
;** 研
www.eeworm.com/read/115116/15026113
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/216104/15027149
java stack.java
package association.fptree;
/**
* 堆栈
* @author qjt
* 当将某类型数据放入堆栈又
* 取出后,应该将取出的Object类型Downcast回原来类型
*
*/
class Stack{
Elem top;
void push(Object obj){
Elem temp;
temp=to
www.eeworm.com/read/114874/15035017
h stack.h
#if !defined(AFX_STACK_H__75314E61_4BBF_11D5_9DFE_5254AB1C303A__INCLUDED_)
#define AFX_STACK_H__75314E61_4BBF_11D5_9DFE_5254AB1C303A__INCLUDED_
#include
template
clas