-
matrix of the code library, very useful, please try downloading!
关于矩阵运算的代码类库,非常有用,请下载试一试!-matrix of the code library, very useful, please try downloading!
- 2023-02-19 04:50:04下载
- 积分:1
-
odd N bands Demon Lineup : N
奇数N 阶魔方阵问题: 奇数N 阶魔方阵的构造规则如下: 1、在第一行的正中间填入1; 2、如果左上角能够移动,则往左上角填入后继的数;如果左上角不 能移动,则顺移到该列最下方左边的一列中最靠近该列的位置; 3、如果左上角不能移动,同时在该列位置的最下方左边最靠近的位 置处也不能填入数,则往该位置的上一行的最右边的位置处填入 后继数; 4、每次尽可能地往左上角填数,如果发现左上角已经填满了数,则 从当前填的数的位置下方填上后继数。 要求: 无。 输入: 用户从键盘任意输入一个正奇数。 输出: 打印出该魔方阵。-odd N bands Demon Lineup : N-odd magic Lineup Construction Rules are as follows : 1, the first line is the middle of a preference; Two, if the upper left corner to Mobile, the successor to fill in the upper left; If the upper left corner, unable to move, with the move out of the bottom of the left one of the closest out of position; three, if the upper left corner, unable to move, while in the position shown in the bottom left nearest location Department has not entered a few, to the position of the party on the right side of the positions filled successor; 4, each possible to fill the upper left corner, if fill the upper left corner, has found a few, from the current fill several positions to fill in the bottom subsequent few. Requ
- 2022-01-21 19:39:47下载
- 积分:1
-
解决利用 BFS 在 Java 中的 8 拼图游戏
这就是广度优先搜索和 8 拼图算法在求解 8 益智游戏的执行。
使用的语言是 java,代码中的注释将帮助与其余部分 !
- 2022-01-21 18:09:54下载
- 积分:1
-
计算机模拟物理作业,用来模拟抛体运动
计算机模拟物理作业,用来模拟抛体运动-computer simulation of physical operations, used to simulate Projectile Motion
- 2022-07-14 17:12:36下载
- 积分:1
-
LDPC 仿真代码
1. 根据度分布生产LDPC校验矩阵H;
2. 生产LDPC编码矩阵G;
3. 在高斯信道下进行仿真;
4. 可进行不同译码算法对比。
完整的C++工程文件,方便 对LDPC码进行系统的仿真分析。
- 2022-01-28 09:57:50下载
- 积分:1
-
电磁波传播
以麦克斯韦电磁场与电磁波的旋度方程组为理论支持,通过编程来实现电磁波场传播的模拟研究。
- 2022-08-21 15:56:10下载
- 积分:1
-
performance simulation of network_coding
应用背景In generated networks, selecting one node as source and some nodes as receivers in
random (single source multicast network), we make performance test for network
coding based multicast route algorithm (we put forward it ourselves, corresponding to
high multicast rate and low multicast rate), shortest path distribution tree route
algorithm (DIJKSTRA algorithm) and Maximum-rate distribution tree route
algorithm (PRIM algorithm), respectively.
关键技术
In this program, two things have been done: (1) generate random topologies (2)performance test。
network coding cap: 5.0000 dijk cap: 5.0000 prim cap: 5.0000 network coding res1: 0.0000--res2: 12.0000 dijk res: 14.0000 prim res: 14.0000 average degree: 2.
- 2022-11-16 07:10:03下载
- 积分:1
-
贝叶斯bayes算法分类器诊断程序
贝叶斯bayes算法分类器诊断程序-Bayesian classifier diagnostic procedures
- 2022-02-03 21:13:18下载
- 积分:1
-
三维球的RCS计算,FDTD法
该原码使用Matlab编写的3维FDTD(时域有限差分算法)计算了球的RCS经典散射问题,采用PEC作边界,高斯波束激励。
- 2022-08-19 07:25:15下载
- 积分:1
-
单链表操作
资源描述#include
#define maxsize 100
using namespace std;
/*class base
{
int length;
};*/
class Seqlist //实现顺序表类
{
private:
int size; //当前元素个数
int length; //当前表的总长度
public:
int *elem; //动态存放数据
Seqlist(); //构造函数的声明
int listset(); //顺序表的创建
&nbs
- 2022-06-03 18:29:34下载
- 积分:1