-
dda algorithm is the basic algorithm in computer graphics, very useful, it is re...
dda算法是计算机图形学的基本算法,非常实用,建议大家用。可以画直线-dda algorithm is the basic algorithm in computer graphics, very useful, it is recommended by everyone. Can draw a straight line
- 2022-12-28 09:10:03下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
1.2KBPS MELP
微软1.2kbps MELP 算法
用于语音压缩的MELP算法,为美国联邦标准,给出的代码中包括了MELP算法的C实现版本,版权为微软所有
- 2023-03-05 01:25:03下载
- 积分:1
-
科学与工程数值计算算法(Visual Basic版)一书的源代码。对科学研究者自己开发领域内计算程序极具参考价值。...
科学与工程数值计算算法(Visual Basic版)一书的源代码。对科学研究者自己开发领域内计算程序极具参考价值。-science and engineering numerical algorithm (Visual Basic version) a book source. Scientific researchers to develop its own procedures for calculating the area of great reference value.
- 2023-04-23 14:05:04下载
- 积分:1
-
用keil c编写的PID算法.rar
用 keil c编写的PID算法.rar
- 2023-08-02 10:55:02下载
- 积分:1
-
序列二次规划程序
求解序列二次规划程序,只要编写不同的目标函数,目标函数导数,约束函数,约束函数的雅克比矩阵,即可求出不同问题的最大值或最小值。Solving sequence quadratic programming, as long as write a different objective function, the target function and constraint function, constraint function of Jacobi matrix, then find out the maximum or minimum of a different question.
- 2023-07-14 13:15:03下载
- 积分:1
-
verilog的111个经典实例
Verilog HDL是一种硬件描述语言,用于从算法级、结构级、门级到开关级的多种抽象设计层次的数字系统建模。 被建模的数字系统对象的复杂性可以介于开关级电路(例如pmos/nmos)、简单的门(例如库单元描述)和完整的复杂电子数字系统之间(例如CPU)
- 2022-01-28 02:35:43下载
- 积分:1
-
常用数值算法Fortran代码,使用Fortran 77的固定格式。
Fortran 77采用固定格式,所有代码均用gfortran编译器和英特尔Fortran编译器进行测试。所有代码分为15类。它包括
- 2022-11-08 00:05:03下载
- 积分:1
-
multiplexed LCD
应用背景
SIMPLE CODE TO DRIVE AN MULTIPLEXED LCD
关键技术
It is a basic driver code to initialize and excecute the LCD
- 2022-03-13 19:25:28下载
- 积分:1
-
一款价值无量的曲线控件,只要在数据库导就可生成漂亮的拟合曲线...
一款价值无量的曲线控件,只要在数据库导就可生成漂亮的拟合曲线-A curve of the control is of immeasurable value, as long as guide in the database can be generated fitting curves of a beautiful
- 2022-02-03 14:49:55下载
- 积分:1