代码搜索:Stack
找到约 10,000 项符合「Stack」的源代码
代码结果 10,000
www.eeworm.com/read/212828/15148399
c 5-10.c
#include "stdio.h"
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} stack;
stack * creat(void)
{
char ch;
stack * head;
stack *p;
www.eeworm.com/read/211015/15188779
h 9_8.h
//9_8.h
#ifndef STACK_CLASS
#define STACK_CLASS
#include
#include
const int MaxStackSize = 50; //栈的大小,即栈中元素的最大个数
//类的定义
template
class Stack
{
pr
www.eeworm.com/read/209853/15212480
h valuestack.h
//: C16:ValueStack.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Holding objects by value in a S
www.eeworm.com/read/173125/5380173
s79 cstartup.s79
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------
www.eeworm.com/read/168074/5449696
s cstartup.s
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------
www.eeworm.com/read/168073/5449725
s cstartup.s
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------
www.eeworm.com/read/168072/5449741
s cstartup.s
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------
www.eeworm.com/read/168071/5449760
s cstartup.s
;------------------------------------------------------------------------------
;- ATMEL Microcontroller Software Support - ROUSSET -
;----------------------------------------------------
www.eeworm.com/read/156960/5608200
cpp p4-189.cpp
#include
#include
using namespace std ;
typedef stack STACK_INT;
void main()
{
STACK_INT stack1;
int i;
//判断栈是否空
cout
www.eeworm.com/read/152843/5660064
c helper.c
/*
* Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
* Licensed under the GPL
*/
#include
#include
#include
#include
#include
#include