-
这是用来验证卡号世界各地LUHN算法。
This the Luhn algorithm used to verify card numbers throughout the world.
-This is the Luhn algorithm used to verify card numbers throughout the world.
- 2022-12-16 15:10:03下载
- 积分: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
-
猴子吃桃的问题:
此程序是用递归做出来的,方法很简单
猴子吃桃的问题:
此程序是用递归做出来的,方法很简单-monkeys eat a peach : This procedure is done using the recursive method is very simple
- 2022-04-09 19:03:22下载
- 积分:1
-
fortran90 procedures, the use of Runge
fortran90程序,运用Runge-Kutta法数值求解常微分方程的程序,非常适用,包括源代码、一个算例和输出程序-fortran90 procedures, the use of Runge-Kutta method for numerical solution of ordinary differential equations of the process, is very applicable, including source code, a numerical example and output procedures
- 2022-06-21 02:50:43下载
- 积分:1
-
speex 1.1.12 编码 稳定版本
speex 1.1.12 编码 稳定版本-speex 1.1.12 stable version of code
- 2023-07-31 17:25:03下载
- 积分:1
-
用堆实现优先队列
用堆实现优先队列-used Heap priority queue
- 2022-10-31 17:20:02下载
- 积分:1
-
Apriori Algo Matlab
vvvapriori算法MatlabApriori算法MatlabApriori算法MatlabApriori算法MatlabApriori算法MatlabApriori算法MatlabApriori算法MatlabApriori算法Matlab
- 2022-01-26 07:16:31下载
- 积分:1
-
VC++ 实现逐行读取txt文本文件
VC 实现逐行读取txt文本文件
- 2022-01-25 22:26:03下载
- 积分:1
-
帮助你迅速理解PCA算法的java程序
本程序是实现PCA算法的一个完整java程序。代码的层次清晰,包含特征值和特征向量的提取等。能让你迅速了解并学会PCA算法。程序中包含测试数据,只要变换测试数据,就可以运行你想应用的数据库。
- 2022-03-13 05:41:09下载
- 积分:1
-
关键词提取
应用背景提取关键词,在一篇文章或一个语句当中,提取语句的关键词。关键技术利用分词算法,提取语句或者文章的关键词
- 2023-02-14 17:40:03下载
- 积分:1