-
MEPG4协议编解码算法和源代码、DEMO等
MEPG4协议编解码算法和源代码、DEMO等
- 2022-01-24 17:54:38下载
- 积分:1
-
exe-c 编译器
可执行的Win32到C++反编译。编译与Microsoft Visual C ++。这是一个端口Qt框架。
- 2022-04-29 20:32:58下载
- 积分:1
-
顺序队列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
-
linux进程间通信,父进程,子进程的创建
linux进程间通信,父进程,子进程的创建-inter-process communication, parent process, the process of creating son
- 2022-06-19 00:49:21下载
- 积分:1
-
schedulecpu
应用背景关键技术联合国 ;algoritmo de planificacióN ;硒利用对位calcular洛杉矶阙消耗等algoritmo O Conjunto de一个接着一个algoritmos(程序)确定的人不使用铝realizar尤娜。EJ:Tiempo de finalizacióN,porcentaje de utilización de la CPU,等..)ES UNA aplicacion de algoritmos FCFS Y Y Y prioryti水井坊RR德艾维斯operativos ;硒ejecuta做CD EN EL卢格Donde埃斯特CD cpu.tar.gzjavac mainapp.javaJava MainApp
- 2022-12-14 23:00:03下载
- 积分:1
-
C#滤波算法
C#,滤波算法,实现方法,KalmanFa, 推荐下载,共同学习,共同进步!-electronic sphygmomanometer principle, download the source, learn together and progress together!
- 2022-11-11 21:45:03下载
- 积分:1
-
With n
设有n个件工作分配给n个人。将工作i分配给第j个人所学要的费用为Cij。试设计一个算法,为每个人都分配1件工作,并使总费用达到最小-With n-pieces of work assigned to the n individuals. Will be allocated to the first j of work i personally have learned to cost Cij. Try to design an algorithm for each person assigned a work, and to minimize the total cost of
- 2022-09-23 13:05:03下载
- 积分:1
-
表达式转换、 计算器和更多
这是一个Pascal/德尔福单元的功能来计算使用后缀形式(RPN)的算术表达式。通常表达都写在“缀”的形式,如(3+4)*5-6......这是人类可读的形式。但后缀形式是超级容易计算(没有括号,没有照顾运营商优先考虑的,因为它是所有明示)。该代码使用了这种方法,并适当的结构(栈)与数学表达式工作。包括有:从缀形式的字符串数组RPN转换后缀表达式计算器;转换回字符串,可读通过模拟运算表;辅助功能,所有这些的;奖金:求解一个数字游戏(代码描述);作品通过构建和评估RPN表达式。我希望你会发现这个代码很有用的一些有关数学编程项目...这个代码是实际使用在www.dejantomic.com/games/mojbroj.php发现游戏。该网站和游戏不是英语;这段代码简单翻译成英文。
- 2023-05-29 11:00:03下载
- 积分:1
-
一种排序算法
一种排序算法-A kind of sorting algorithm
- 2022-02-13 08:48:01下载
- 积分:1
-
快速DCT算法32位的C语言实现,乘法次数最少,可嵌入编码器及解码器使用
快速DCT算法32位的C语言实现,乘法次数最少,可嵌入编码器及解码器使用- Fast DCT the algorithm 32 C language realization, the
multiplication number of times are least, may insert the encoder and
the decoding use
- 2022-08-19 10:04:59下载
- 积分:1