-
二维码生成和读取
资源描述
这个程序主要是完成的功能是二维码的生成和解析。
可选编码形式:Byte,Numeric,AlphaNumeric
修正层次:L、M、Q、H
版本:1-40
像素可调
提供 二维码创建、二维码保存、二维码打开及译码功能
- 2022-05-23 10:43:16下载
- 积分:1
-
VB matrix eigenvalue of the algorithm sets. Including : symmetric matrix Jacobia...
用VB实现矩阵特征值的求解算法集。包括:对称矩阵的雅可比变换,实对称阵为三对角阵的特征值求解,等五种特征值求解算法。-VB matrix eigenvalue of the algorithm sets. Including : symmetric matrix Jacobian transform, real symmetric matrix to a three-diagonal matrix eigenvalue solution, the five eigenvalue algorithm.
- 2023-05-05 06:25:03下载
- 积分:1
-
不动迭代算法 计算方法
不动迭代算法 计算方法-Fixed iterative algorithm calculation method
- 2023-01-14 07:40:04下载
- 积分:1
-
这是C写的贪婪算法之2,在建摸和优化计算中非常有用,欢迎下载!...
这是C写的贪婪算法之2,在建摸和优化计算中非常有用,欢迎下载!-This is a greedy algorithm written in C of 2, in the modeling and optimization of the calculation is very useful are welcome to download!
- 2022-08-06 12:32:38下载
- 积分:1
-
哈夫曼编码
在计算机科学和信息理论,霍夫曼编码是用于无损数据压缩熵编码算法。该术语是指使用一个可变长度代码表的编码源符号(诸如字符在一个文件中),其中所述可变长度代码表是来自于基于发生的每个所述估计的概率以特定的方式来源符号的可能值。它是由大卫·霍夫曼研制,而他是一个博士就读于麻省理工学院,并在1952年发表的论文“为最小冗余码的构造方法”。
- 2022-08-06 02:51:26下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1
-
Levenshtein_Edit_Distance_Algorithm
介绍
- 2022-07-24 08:53:07下载
- 积分:1
-
求定积分的通用函数,以给定算例,演示了定积分的求解过程,简单明了。...
求定积分的通用函数,以给定算例,演示了定积分的求解过程,简单明了。-Seek a common definite integral function to the given examples to demonstrate the definite integral of the solution process, simple and straightforward.
- 2022-01-26 00:04:49下载
- 积分:1
-
人脸识别PCA算法
PCA是最经典的算法,是很适合用于人脸识别的,而且可以有效地降维,提起特征值。
- 2022-08-26 14:37:35下载
- 积分:1
-
最小二乘反褶积程序,原代码已编译,可以…
最小平方反褶积程序,原代码,已经编译过了,直接可以应用-least squares deconvolution procedure, the original code has been compiled, can be applied directly
- 2023-06-13 18:10:03下载
- 积分:1