代码搜索结果

找到约 10,000 项符合 3 的代码

main3-3.cpp

// main3-3.cpp 循环队列 检验bo3-3.cpp的主程序 #include"c1.h" typedef int QElemType; #include"c3-3.h" #include"bo3-3.cpp" void visit(QElemType i) { printf("%d ",i); } void main() {

algo3-3.cpp

// algo3-3.cpp 括号匹配的检验,(限于()、[]) typedef char SElemType; #include"c1.h" #include"c3-1.h" #include"bo3-1.cpp" void check() { // 对于输入的任意一个字符串,检验括号是否配对 SqStack s; SElemType ch[80],

c3-3.h

// c3-3.h 队列的顺序存储结构(可用于循环队列和非循环队列) #define MAXQSIZE 5 // 最大队列长度(对于循环队列,最大队列长度要减1) struct SqQueue { QElemType *base; // 初始化的动态分配存储空间 int front; // 头指针,若队列不空,指向队列头元素 int rear; // 尾指针,

bo3-3.cpp

// bo3-3.cpp 循环队列(存储结构由c3-3.h定义)的基本操作(9个) Status InitQueue(SqQueue &Q) { // 构造一个空队列Q Q.base=(QElemType *)malloc(MAXQSIZE*sizeof(QElemType)); if(!Q.base) // 存储分配失败 exit(OVERFLOW);

c3-3.h

/* c3-3.h 队列的顺序存储结构(可用于循环队列和非循环队列) */ #define MAXQSIZE 5 /* 最大队列长度(对于循环队列,最大队列长度要减1) */ typedef struct { QElemType *base; /* 初始化的动态分配存储空间 */ int front; /* 头指针,若队列不空,指向队列头元素 */ int r

main3-3.c

/* main3-3.c 循环队列 检验bo3-3.c的主程序 */ #include"c1.h" typedef int QElemType; #include"c3-3.h" #include"bo3-3.c" void visit(QElemType i) { printf("%d ",i); } void main() { St

bo3-3.c

/* bo3-3.c 循环队列(存储结构由c3-3.h定义)的基本操作(9个) */ Status InitQueue(SqQueue *Q) { /* 构造一个空队列Q */ (*Q).base=(QElemType *)malloc(MAXQSIZE*sizeof(QElemType)); if(!(*Q).base) /* 存储分配失败 */ exit(

algo3-3.c

/* algo3-3.c 括号匹配的检验,(限于()、[]) */ typedef char SElemType; #include"c1.h" #include"c3-1.h" #include"bo3-1.c" void check() { /* 对于输入的任意一个字符串,检验括号是否配对 */ SqStack s; SElemType ch[80

exa3_3.m

% exa3-3_casfilter.m, for example 3-3 % to test casfilter.m and to obtain the step response. clear; x=ones(1,100); t=1:100; b=[0.00183,0.00734,0.01101,0.00737,0.00183]; a=[1,-3.054,3.829,-2.2