代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/391177/8417559
cpp 停车场问题.cpp
#define OVERFLOW -2
#define OK 1
#define ERROR 0
#define STACK_INIT_SIZE 1
typedef int status ;
#include
#include
#include
#include
typedef stru
www.eeworm.com/read/379536/9193947
txt 车厢调度.txt
#include
#include
#include
typedef int SElemType;
typedef int Status;
int end;/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
/*---------------------栈的数据结构
www.eeworm.com/read/376480/9316483
txt 车厢调度.txt
#include
#include
#include
typedef int SElemType;
typedef int Status;
int end;/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
/*---------------------栈的数据结构
www.eeworm.com/read/358860/10177753
cpp longestdw.cpp
#define OVERFLOW -2
#define OK 1
#define ERROR 0
#define STACK_INIT_SIZE 1
typedef int status ;
#include
#include
#include
#include
typedef stru
www.eeworm.com/read/466414/7034725
c parking_1.c
/*【问题描述】
设停车场是一个可停放n辆汽车的狭长通道,且只有一个大门可供汽车进出。汽车在停车场内按车辆到达时间的先后顺序,
依次由北向南排列(大门在最南端,最先到达的第一辆车停放在车场的最北端),若车场内已停满n辆汽车,
则后来的汽车只能在门外的便道上等候,一旦有车开走,则排在便道上的第一辆车即可开入;当停车场内某辆车要离开时,
在它之后进入的车辆必须先退出车场为它让路(假定停车场内 ...
www.eeworm.com/read/399858/7830102
txt 车厢调度.txt
#include
#include
#include
typedef int SElemType;
typedef int Status;
int end;/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
/*---------------------栈的数据结构
www.eeworm.com/read/397820/8020079
txt 2.txt
#include
#include
#include
typedef int SElemType;
typedef int Status;
int end;/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
/*---------------------栈的数据结构----------
www.eeworm.com/read/396863/8087087
cpp (jing)migong.cpp
#include
#include
#include
#define STACK_INIT_SIZE 100 //初始栈大小
#define STACKINCREAMENT 10 //添加栈的长度
#define SIZE_OF_MAPH 20 //迷宫高度
#define SIZ
www.eeworm.com/read/368254/9703730
h stack.h
// file: stack.h
#include "com_def.h"
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
// 定义栈数据类型
// 点坐标位置
typedef struct _PosType
{
int x;
int y;
}PosType;
// 栈的元素类
www.eeworm.com/read/248791/12540633
txt 新建 文本文档 (121).txt
一,实验目的:数制转换
二,实验环境:硬件 四机房微型计算机
软件 TC3.0
三,实验内容:1. 掌握栈结构,实现栈及栈中的一些常用操作。
2.掌握利用栈实现数制的转换的方法。
四,实验步骤:先写算法,基本的思想是先,先建一个栈,然后对数每进行%8取余
把余数入栈,根据栈的特点对,当满时再生新的空间, ...