代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/454633/7386362
cpp algo0301.cpp
void conversion (int Num) { // 算法3.1
// 对于输入的任意一个非负十进制整数,打印输出与其等值的八进制数
ElemType e;
SqStack S;
InitStack(S); // 构造空栈
while (Num) {
Push(S, Num % 8);
N
www.eeworm.com/read/453912/7403870
cpp migong.cpp
#include
#include
#define STACK_INIT_SIZE 100
#define STACK_INCREMENT 10
typedef struct{
char *base;
char *top;
int stacksize;
}SqStack;
www.eeworm.com/read/450798/7476705
c 栈操作.c
#include
#include
#define MAX 20
#define ElemType int
#define S (*p)
struct SqStack
{
ElemType elem[MAX];
int top;
};
main()
{
struct SqStack *q;
int i,y,cord;
www.eeworm.com/read/449694/7497994
c 栈操作.c
#include
#include
#define MAX 20
#define ElemType int
#define S (*p)
struct SqStack
{
ElemType elem[MAX];
int top;
};
main()
{
struct SqStack *q;
int i,y,cord;
www.eeworm.com/read/449211/7516739
cpp 用栈实现十进制数转换为任何一种数制.cpp
#include "stdio.h"
#include "stdlib.h"
#include "iostream.h"
#define ok 1;
#define error 0;
#define stack_init_size 100;
#define stackincrement 10;
typedef struct{
int *base;
int *t
www.eeworm.com/read/448997/7520347
cpp algo0301.cpp
void conversion (int Num) { // 算法3.1
// 对于输入的任意一个非负十进制整数,打印输出与其等值的八进制数
ElemType e;
SqStack S;
InitStack(S); // 构造空栈
while (Num) {
Push(S, Num % 8);
N
www.eeworm.com/read/447789/7545594
cpp stack.cpp
#include
#include
#include "../header/bitree.h"
#include "../header/queue.h"
#include "../header/stack.h"
#include "../header/expr.h"
Status InitStack( SqStack &S )
{
S.b
www.eeworm.com/read/444873/7603939
c stack.c
#include
#include
#define MAX 20
#define ElemType int
#define S (*p)
struct SqStack
{
ElemType elem[MAX];
int top;
};
main()
{
struct SqStack *q;
int i,y,cord;
www.eeworm.com/read/444723/7608008
cpp 1.cpp
#include
#include
typedef Struct
{
int *base;
int *top;
int stacksize;
}SqStack;
void initstack(SqStack *S)
{
S->base=(int*)malloc(100*sizeof(int));
S->top=S->base;
www.eeworm.com/read/441423/7670583
cpp mazerecursiontotalpath.cpp
//
//**********************程序说明*******************************
// 该程序是迷宫问题递归求解全部路径的C语言代码,
// 迷宫二维数组表示,初值与教材图3.4一致
// wjluo,2004年3月3日
//****************************************************