-
顺序队列C实现
#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status; typedef int QElemType; /* QElemType类型根据实际情况而定,这里假设为int *//* 循环队列的顺序存储结构 */typedef struct{ QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */}SqQueue;Status visit(QElemType c){ printf("%d ",c); return OK;}/* 初始化一个空队列Q */Status Init
- 2022-08-13 11:29:01下载
- 积分:1
-
数值分析中的雅可比方法问题,含输入输出界面。
数值分析中的雅可比方法问题,含输入输出界面。-Numerical analysis of Jacobi methods, including input and output interface.
- 2023-04-19 07:50:03下载
- 积分:1
-
地震弹性波交错网格有限差分正演
应用背景用于地震勘探中弹性波正演,供学习和研究,对理解地震波正演就帮助关键技术2D弹性波交错网格有限差分PML边界,多炮
- 2022-04-09 18:29:10下载
- 积分:1
-
FPGA-Quartus-对四个数码管上的数字进行排序
资源描述FPGA-Quartus-对四个数码管上的数字进行排序
- 2023-03-02 11:45:03下载
- 积分:1
-
一个用Basic实现的B
一个用Basic实现的B-Tree算法- The B-Tree algorithm which realizes with Basic
- 2022-01-23 11:15:55下载
- 积分:1
-
C的Kalman滤波,C++和Matlab程序
Kalman filter的C,C++及matlab程序-Kalman filter of the C, C++ and matlab programs
- 2022-02-24 11:10:58下载
- 积分:1
-
自己编写的,1024点快速傅里叶变换、倒频谱分析、功率谱分析及其Applet曲线显示程序源代码。 说明清楚,附有验证使用的数据文件...
自己编写的,1024点快速傅里叶变换、倒频谱分析、功率谱分析及其Applet曲线显示程序源代码。 说明清楚,附有验证使用的数据文件-themselves prepared in 1024 point fast Fourier transform, cepstrum analysis, power spectrum analysis and Applet curve shows the source code. Make it clear with the use of the test data files
- 2023-08-21 00:10:04下载
- 积分:1
-
8 皇后问题python解决
8 皇后问题在 python 中
八皇后益智是的放置八个问题象棋 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-03-16 10:00:04下载
- 积分:1
-
多种计算方法
本源码包括各种计算方法中的各种基本计算,包括行列式,矩阵,lu分解等。
- 2022-01-25 19:01:08下载
- 积分:1
-
以面向对象方法实现的数值算法类库,包括 向量、矩阵等的运算以及FFT...
以面向对象方法实现的数值算法类库,包括 向量、矩阵等的运算以及FFT-object-oriented methods to achieve the numerical algorithm library, including vector, matrix arithmetic and FFT
- 2022-11-24 22:05:03下载
- 积分:1