代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/387918/8646864
cpp main.cpp
#pragma warning(disable:4786)
#include
#include
#include
#include
#include
#include
#include
#include
#inc
www.eeworm.com/read/431298/8689799
c 95.c
#include
#include
#include
#include
/*字符操作函数*/
#include
#define BUFFSIZE 32
#define COL 128
#define ROW 64
/*定义栈1*/
typedef struct
www.eeworm.com/read/429611/8799214
c gormcb.c
/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include
#include
#include
#include
www.eeworm.com/read/429611/8799484
c gopint.c
/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include
#include
#include
#include
www.eeworm.com/read/429503/8804938
cpp 表达式求值.cpp
//表达式求值问题
# include
# include
# define M 100
float num_stack[M]; //数字栈
char oper_stack[M];//运算符栈
int top=0,top2=0;
int value(char c) //判断运算符的优先级
{
switch(c)
{
case '
www.eeworm.com/read/282811/9059511
c main.c
/*
* 作者:antigloss
* 最后修改:05-8-27 21:30
* 蚂蚁的 C/C++ 标准编程
* cpp.ga-la.com
*/
#include
#include "header/lstack.h"
int main( void )
{
int e;
LStack S;
init_stack( &S
www.eeworm.com/read/281557/9150524
c adc0_temp_pro.c
//内部温度传感器调试程序//
//利用过采样实现16位精度//
//ADC0_TEMP_PRO.c
#include
#define ADC0START temppage=SFRPAGE;SFRPAGE=0x00;AD0BUSY=1;SFRPAGE=temppage
#define STACK_LEN 128
//采样128次,再将128个数据总和除以8
www.eeworm.com/read/379536/9193947
txt 车厢调度.txt
#include
#include
#include
typedef int SElemType;
typedef int Status;
int end;/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
/*---------------------栈的数据结构
www.eeworm.com/read/376480/9316483
txt 车厢调度.txt
#include
#include
#include
typedef int SElemType;
typedef int Status;
int end;/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
/*---------------------栈的数据结构
www.eeworm.com/read/175878/9528170
java synctest1.java
package commu;
public class SyncTest1{
public static void main(String args[]){
Stack stack1=new Stack("stack1");
Producer producer1=new Producer();
Consumer consumer1=new Consumer();