点数信息
www.dssz.net
注册会员
|
设为首页
|
加入收藏夹
您好,欢迎光临本网站!
[请登录]
!
[注册会员]
!
首页
移动开发
云计算
大数据
数据库
游戏开发
人工智能
网络技术
区块链
操作系统
模糊查询
热门搜索:
源码
Android
整站
插件
识别
p2p
游戏
算法
更多...
在线客服QQ:632832888
当前位置:
资源下载
搜索资源 - STACK_INIT_SIZE
下载资源分类
移动开发
开发技术
课程资源
网络技术
操作系统
安全技术
数据库
行业
服务器应用
存储
信息化
考试认证
云计算
大数据
跨平台
音视频
游戏开发
人工智能
区块链
在结果中搜索
所属系统
Windows
Linux
FreeBSD
Unix
Dos
PalmOS
WinCE
SymbianOS
MacOS
Android
开发平台
Visual C
Visual.Net
Borland C
CBuilder
Dephi
gcc
VBA
LISP
IDL
VHDL
Matlab
MathCAD
Flash
Xcode
Android STU
LabVIEW
开发语言
C/C++
Pascal
ASM
Java
PHP
Basic/ASP
Perl
Python
VBScript
JavaScript
SQL
FoxBase
SHELL
E语言
OC/Swift
文件类型
源码
程序
CHM
PDF
PPT
WORD
Excel
Access
HTML
Text
资源分类
搜索资源列表
赋值语句翻译c++(编译原理)
#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
所属分类:
iOS
发布日期:2009-05-25
文件大小:6144
提供者:
sidney_sin
数据结构课程设计魔王语言解释
#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
所属分类:
其它
发布日期:2009-06-11
文件大小:7168
提供者:
hwlnizy
实验三 算术表达式求值演示
演示用算符优先对算法表达式求值的过程#include #include #include using namespace std; typedef int ElemType; const int STACK_INIT_SIZE=100; const int STACKINCREMENT=10;
所属分类:
其它
发布日期:2010-01-06
文件大小:25600
提供者:
zhyy1234
c语言写的预测分析器
#include #include #include #include #include #define stack_init_size 100 #define stackincrement 10 char ch,ch1; int i,j,k,n,m;
所属分类:
C
发布日期:2010-01-22
文件大小:3072
提供者:
clwaty
栈和队列的基本操作实现及其应用
一、实验目的 1、熟练掌握栈和队列的基本操作在两种存储结构上的实现。 2、会用栈和队列解决简单的实际问题。 二、实验内容 (可任选或全做) 假设称正读数和反读数都相同的字符序列为“回文”,例如,‘abba’和‘abcba’是回文,‘abcde’和‘ababab’则不是回文。试写一个算法判断别读入的一个以‘@’为结束符的字符序列是否是“回文”。 [实现提示] 首先,序列1进栈,然后序列1出栈并与序列2比较 相关常量及结构定义: # define STACK_INIT_SIZE 100 # d
所属分类:
其它
发布日期:2010-04-28
文件大小:51200
提供者:
thomas4875
数据结构课程设计 表达式计算
一、 实验内容 本程序完成了算术表达式的求值以及演示操作。集体实现功能如下: 1.算术表达式的求值,包括加、减、乘、除、乘方、单目减运算; 2.赋值运算,即给某一变量赋值或赋计算表达式; 3.函数表达式求值,即运算量为变量。 4.运算量可以为实数,也可以为整数,只需简单修改宏定义。默认为实数运算。 二、数据结构设计 1. 算符优先法数据结构设计 本程序采用了“算符优先法”,使用两个工作栈。一个称作OPTR,用以寄存运算符;另一个称作OPND,用以寄存操作数或运算结果。此处采用的顺序栈结构如下:
所属分类:
其它
发布日期:2010-07-19
文件大小:26624
提供者:
mengsuplus
c语言 利用栈实现表达式求解
#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;
所属分类:
C
发布日期:2010-07-21
文件大小:4096
提供者:
zhulina19
C语言 栈的基本操作
栈的新建,插入,删除,取栈头等等 #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
所属分类:
C
发布日期:2010-10-11
文件大小:3072
提供者:
wwweet
数据结构课程设计(翻译标准C版本)
# 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
所属分类:
C
发布日期:2010-12-07
文件大小:1024
提供者:
shouliezhe1hao
二叉树 数据结构与数据库 C++ 作业
二叉树 数据结构与数据库 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
所属分类:
C/C++
发布日期:2011-04-18
文件大小:11264
提供者:
weiwei1110
表达式求值(栈的应用)
#define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 #include #include using namespace std; typedef double SElemType; ///////////////////////////////////////////////////////////////////////////////// /*以下为栈的操作*/ typedef struct SqStack //栈的顺序存储结构 {
所属分类:
C/C++
发布日期:2011-05-08
文件大小:2048
提供者:
a574490399
算术表达式求值演示程序课程设计
完整课程设计(部分代码): /* 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; //元素
所属分类:
专业指导
发布日期:2011-06-12
文件大小:751616
提供者:
gracedou
四则运算表达式的转换并计算结果
数据结构的一些算法。由中缀表达式转换成后缀表达式然后计算结果,以后如果有需要还可以联系我
所属分类:
C/C++
发布日期:2011-07-01
文件大小:1024
提供者:
wenjinjie
能进行括号匹配
对括号进行左右匹配,对应的,可运行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
所属分类:
C/C++
发布日期:2012-06-05
文件大小:2048
提供者:
jjfail123
C语言数据结构迷宫问题
//------------ 栈的顺序存储实现 ------------------------------typedef struct...{ int row; int col;}PosType;typedef struct...{ int step; //当前位置在路径上的"序号" PosType seat; //当前的坐标位置 DirectiveType di;
所属分类:
C/C++
发布日期:2012-10-17
文件大小:38912
提供者:
liuce_1991
数据结构实验
数据结构实验 #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
所属分类:
C/C++
发布日期:2015-05-10
文件大小:74752
提供者:
ly199498
模拟拔河游戏,自己做的,共享出来
#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
所属分类:
iOS
发布日期:2008-12-22
文件大小:1048576
提供者:
ghaitian
C语言图书管理系统 大学C语言项目作业
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
所属分类:
C
发布日期:2008-12-25
文件大小:19456
提供者:
jiangerxiaozhao
3合1雅克比迭代 广度优先 深度优先 四则运算 C程序
#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
所属分类:
C/C++
发布日期:2019-03-07
文件大小:663552
提供者:
baidu_38610481
数据结构(C语言)代码实例2
//--------------------栈的顺序存储结构-------------------- #define STACK_INIT_SIZE 100 #define STACKINCREACE 10 typedef char Elemtype;//在头文件中说明 typedef int Status; typedef struct{ Elemtype *base; Elemtype *top; int stacksize
所属分类:
C/C++
发布日期:2019-04-18
文件大小:16777216
提供者:
dog123456d
«
1
2
»