您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 赋值语句翻译c++(编译原理)

  2. #include #include #include using namespace std; #define INFEASIBLE -1 #define OVERFLOW -2 #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 typedef char SElemType; typedef char ElemT ype; struct STACK { SElemType * base; SElemType * top; int sta
  3. 所属分类:iOS

    • 发布日期:2009-05-25
    • 文件大小:6144
    • 提供者:sidney_sin
  1. 数据结构课程设计魔王语言解释

  2. #include #include #define STACK_INIT_SIZE 100 #define STACK_INCREMENT 10 struct Stack{ char* base; char* top; int stacksize; }; void InitStack(struct Stack &s){//构造栈 s.base=(char*)mal loc(STACK_INIT_SIZE*sizeof(char)); s.top=s.base; s.stacksize=STAC
  3. 所属分类:其它

    • 发布日期:2009-06-11
    • 文件大小:7168
    • 提供者:hwlnizy
  1. 实验三 算术表达式求值演示

  2. 演示用算符优先对算法表达式求值的过程#include #include #include using namespace std; typedef int ElemType; const int STACK_INIT_SIZE=100; const int STACKINCREMENT=10;
  3. 所属分类:其它

    • 发布日期:2010-01-06
    • 文件大小:25600
    • 提供者:zhyy1234
  1. c语言写的预测分析器

  2. #include #include #include #include #include #define stack_init_size 100 #define stackincrement 10 char ch,ch1; int i,j,k,n,m;
  3. 所属分类:C

    • 发布日期:2010-01-22
    • 文件大小:3072
    • 提供者:clwaty
  1. 栈和队列的基本操作实现及其应用

  2. 一、实验目的 1、熟练掌握栈和队列的基本操作在两种存储结构上的实现。 2、会用栈和队列解决简单的实际问题。 二、实验内容 (可任选或全做) 假设称正读数和反读数都相同的字符序列为“回文”,例如,‘abba’和‘abcba’是回文,‘abcde’和‘ababab’则不是回文。试写一个算法判断别读入的一个以‘@’为结束符的字符序列是否是“回文”。 [实现提示]   首先,序列1进栈,然后序列1出栈并与序列2比较 相关常量及结构定义: # define STACK_INIT_SIZE 100 # d
  3. 所属分类:其它

    • 发布日期:2010-04-28
    • 文件大小:51200
    • 提供者:thomas4875
  1. 数据结构课程设计 表达式计算

  2. 一、 实验内容 本程序完成了算术表达式的求值以及演示操作。集体实现功能如下: 1.算术表达式的求值,包括加、减、乘、除、乘方、单目减运算; 2.赋值运算,即给某一变量赋值或赋计算表达式; 3.函数表达式求值,即运算量为变量。 4.运算量可以为实数,也可以为整数,只需简单修改宏定义。默认为实数运算。 二、数据结构设计 1. 算符优先法数据结构设计 本程序采用了“算符优先法”,使用两个工作栈。一个称作OPTR,用以寄存运算符;另一个称作OPND,用以寄存操作数或运算结果。此处采用的顺序栈结构如下:
  3. 所属分类:其它

    • 发布日期:2010-07-19
    • 文件大小:26624
    • 提供者:mengsuplus
  1. c语言 利用栈实现表达式求解

  2. #include #include #define stack_init_size 100 #define stackincreament 10 #define overflow -2 typedef struct{ char *base; char *top; int stacksize; }Sqstackcha; typedef struct{ double *base; double *top; int stacksize; }Sqstackdou; Sqstackcha optr;
  3. 所属分类:C

    • 发布日期:2010-07-21
    • 文件大小:4096
    • 提供者:zhulina19
  1. C语言 栈的基本操作

  2. 栈的新建,插入,删除,取栈头等等 #include #include #define OK 1 #define ERROR 0 #define STACK_INIT_SIZE 100 // 存储空间初始分配量 #define STACKINCREMENT 10 // 存储空间分配增量 typedef int SElemType; // 定义栈元素类型 typedef int Status; // Status是函数的类型,其值是函数结果状态代码,如OK等 struct SqStack { SE
  3. 所属分类:C

    • 发布日期:2010-10-11
    • 文件大小:3072
    • 提供者:wwweet
  1. 数据结构课程设计(翻译标准C版本)

  2. # include # define STACK_INIT_SIZE 100 # define STACKINCREMENT 10 typedef int SElemType; struct SqStack{ SElemType * base; SElemType * top; int stacksize; int Length; }; struct SqStack S; SElemType * e; void InitStack () { S.base=(SElemType *)malloc
  3. 所属分类:C

    • 发布日期:2010-12-07
    • 文件大小:1024
    • 提供者:shouliezhe1hao
  1. 二叉树 数据结构与数据库 C++ 作业

  2. 二叉树 数据结构与数据库 C++ 作业 typedef struct BiTNode{ //定义二叉树 char data; struct BiTNode *lchild,*rchild; }BiTNode,*BiTree; typedef struct{ //栈 char *base; char *top; int stacksize; }SqStack; Status InitStack(SqStack &S){ S.base=(char *)malloc(STACK_INIT_SIZE
  3. 所属分类:C/C++

    • 发布日期:2011-04-18
    • 文件大小:11264
    • 提供者:weiwei1110
  1. 表达式求值(栈的应用)

  2. #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 #include #include using namespace std; typedef double SElemType; ///////////////////////////////////////////////////////////////////////////////// /*以下为栈的操作*/ typedef struct SqStack //栈的顺序存储结构 {
  3. 所属分类:C/C++

    • 发布日期:2011-05-08
    • 文件大小:2048
    • 提供者:a574490399
  1. 算术表达式求值演示程序课程设计

  2. 完整课程设计(部分代码): /* Note:Your choice is C IDE */ #define STACK_INIT_SIZE 100 /*栈的存储空间初始分配量*/ #define MAX 100 /*字符存储空间分配量*/ #define DEBUG #define NULL 0 #define TURE 1 #define ERROR -1 #define STACKSIZE 20 typedef int Status; typedef int SElemType; //元素
  3. 所属分类:专业指导

    • 发布日期:2011-06-12
    • 文件大小:751616
    • 提供者:gracedou
  1. 四则运算表达式的转换并计算结果

  2. 数据结构的一些算法。由中缀表达式转换成后缀表达式然后计算结果,以后如果有需要还可以联系我
  3. 所属分类:C/C++

    • 发布日期:2011-07-01
    • 文件大小:1024
    • 提供者:wenjinjie
  1. 能进行括号匹配

  2. 对括号进行左右匹配,对应的,可运行typedef struct { int *base; int *top; int stacksize; }SqStack; int InitStack(SqStack *S) { S->base=(int *)malloc(STACK_INIT_SIZE*sizeof(int)); if(!S->base) { printf("\n磁盘不足.\n"); getch(); exit(ERROR); } S->top=S->base; S
  3. 所属分类:C/C++

    • 发布日期:2012-06-05
    • 文件大小:2048
    • 提供者:jjfail123
  1. C语言数据结构迷宫问题

  2. //------------   栈的顺序存储实现   ------------------------------typedef struct...{     int row;     int col;}PosType;typedef struct...{     int                 step;     //当前位置在路径上的"序号"     PosType             seat;     //当前的坐标位置     DirectiveType     di;
  3. 所属分类:C/C++

    • 发布日期:2012-10-17
    • 文件大小:38912
    • 提供者:liuce_1991
  1. 数据结构实验

  2. 数据结构实验 #include #include #include #define NULL 0 #define OK 1 #define ERROR -1 #define STACK_INIT_SIZE 100 #define STACKINCREMENT 20 /*定义字符类型栈*/ typedef struct{ int stacksize; char *base; char *top; } Stack; //栈的类型 /* 定义整型栈*/ typedef struct{ int
  3. 所属分类:C/C++

    • 发布日期:2015-05-10
    • 文件大小:74752
    • 提供者:ly199498
  1. 模拟拔河游戏,自己做的,共享出来

  2. #include #include #include #include #define STACK_INIT_SIZE 100 //存储空间初始分配量 #define STACKINCREMENT 10 //存储空间分配增量 #define SElemType char //多项式结构体 struct PolyType { float coef; //系数 int expn; //指数 struct PolyType *next; //指向下个元素 }; typedef PolyTyp
  3. 所属分类:iOS

    • 发布日期:2008-12-22
    • 文件大小:1048576
    • 提供者:ghaitian
  1. C语言图书管理系统 大学C语言项目作业

  2. C语言编写的图书管理系统,项目作业 #include #include #include #include #include #define STACK_INIT_SIZE 10 #define OK 1 #define TRUE 1 #define FALSE 0 #define ERROR 0 struct student /*定义学生类型,用于存放借出的书籍*/ { int carnum; char lendbook[10]; }student[1000]; struct employ
  3. 所属分类:C

    • 发布日期:2008-12-25
    • 文件大小:19456
    • 提供者:jiangerxiaozhao
  1. 3合1雅克比迭代 广度优先 深度优先 四则运算 C程序

  2. #include #include #include #include #include #define STACK_INIT_SIZE 10 #define STACK_INCREMENT 2 typedef struct SqStack//定义栈的结构 { float *base; float *top; int stacksize; }SqStack; void InitStack(SqStack &S) { //构造一个空栈s if
  3. 所属分类:C/C++

    • 发布日期:2019-03-07
    • 文件大小:663552
    • 提供者:baidu_38610481
  1. 数据结构(C语言)代码实例2

  2. //--------------------栈的顺序存储结构-------------------- #define STACK_INIT_SIZE 100 #define STACKINCREACE 10 typedef char Elemtype;//在头文件中说明 typedef int Status; typedef struct{ Elemtype *base; Elemtype *top; int stacksize
  3. 所属分类:C/C++

    • 发布日期:2019-04-18
    • 文件大小:16777216
    • 提供者:dog123456d
« 12 »