代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/175090/9560499
cpp 多项式的刮号检查.cpp
// 多项式的刮号检查.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "head.h"
int main(int argc, char* argv[])
{
sqstack L;
function(L);
return 0;
}
www.eeworm.com/read/170011/9823204
txt 栈的存储.txt
#include"math.h"
#include"stdio.h"
#include"stdlib.h"
typedef struct{
int *base;
int *top;
int stacksize;
}sqstack;
char gettop1(sqstack s)
{
char e;
if(s.top==s.base)
;
else
e=*(s.top
www.eeworm.com/read/364713/9897619
cpp check.cpp
//Check.cpp
//Check round brackets fucntion
#include
#include
#include
#include
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
#define O
www.eeworm.com/read/359418/10147191
cpp excise4.cpp
//函数结果状态代码
#include
#include
#include
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
#define OVERFLOW -2
typedef int S
www.eeworm.com/read/161836/10366686
c function.c
#include
#include
#include"definition.h"
int InitStack(SqStack *S) //创建一个空栈
{
S->base=(int *)malloc( INIT_SIZE * sizeof(int) );
if(!S->base) //空间分配失败
return 1;
//空间分配
www.eeworm.com/read/278402/10537116
cpp main.cpp
#include
#include
#include
#include
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
typedef long SElemtype;
typedef struct {
SElemtype *ba
www.eeworm.com/read/159245/10675964
cpp check.cpp
//Check.cpp
//Check round brackets fucntion
#include
#include
#include
#include
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
#define O
www.eeworm.com/read/458559/7294007
cpp expressvalue.cpp
#include
#define MAXSIZE 100
int InDigit(char);
int InOperator(char);
int Prior(char);
typedef struct SqStack
{
char *elem;
char *top;
}SqStack;
typedef char ElemType;
t
www.eeworm.com/read/452086/7447722
c 8皇后问题.c
#include
#include
#define NULL 0
#define STACK_INI_SIZE 30
#define STACKINCREMENT 20
typedef struct
{
int *top;
int *base;
int stacksize;
int length;
}sqstack;
main()
{
www.eeworm.com/read/445114/7599183
cpp 我的表达式.cpp
#include
#include
#include
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
char op[7]={'+','-','*','/','(',')','#'};
char oppr[7][7]={
'>','>','