搜索资源列表
339068DESDemo
- 功能: 实现DES加密算法的加密解密功能 */ /*- */ /*-说明:des算法的实现代码 */ /*- 能够实现56位或56*3密钥的des算法,可以通过该程序提供的接口 */ /*- 进行数据的加密,保证数据在传送过程的安全性 */ /*- */ /*- */ /*-该程序的所有权利由作者保留 *
sort111111
- 数据结构排序算法6个例子,是数据结构的综合应用-data structure algorithm six example, the data structure is integrated application
FRAMER
- 数据帧的CRC校验和算法-data frames CRC checksum algorithm
c_alg
- c++常用算法集,包含数据结构,图论等成熟经典算法-c commonly used algorithm set includes data structures, graph theory, and other mature classical algorithm
xdshc
- 时代商城购物系统 是一个经过完善设计,适用于各种服务器环境的高效购物系统解决方案。时代网联信息科技有限公司具有丰富的 web 应用程序设计经验,尤其在购物系统产品及相关领域,经过长期创新性开发,掌握了一整套从算法,数据结构到产品安全性方面的领先技术,使得时代商城购物系统无论在稳定性、负载能力、安全保障等方面都居于国内外同类产品领先地位。-era shopping mall shopping system after system is a perfect design, apply to all
Excel中农历的算法
- ★或是Excel中最牛的农历解法★ ★ 理由1:数据准确。数据起初来源于《万年历_中华农历网》中数据定义部分并进行了扩充(起止范围为:1900-1-1~2101-1-28),后又与《农历两百年算法【C语言代码】》及《寿星万年历》进行了校对,发现部分日期有出入。于是又下载了《中华五千年长历》和《三千五百年历日天象》两本书(第二本书只到2050年),对近2500个月的关键数据进行了逐一比对(2038年还有出入,最后以我的诺基亚6060手机为准),整理出了一套基础数据。(详见农历基础数据中的说明)
GameTest
- 关于网络通信中的数据打包和接收端解包的一般算法编码-About the data in the network package and unpack the receiving end of a general algorithm for encoding
optics
- optics 聚类算法,异类挖掘算法,可以挖掘出数据里面的异常数据(optics clustering algorithm)
huawei_Compete
- 本例基于华为勇敢星挑战赛的测试用例,通过Dijkstra算法实现数据通信的优化工作。(This example is based on HUAWEI brave star challenge test case, through the Dijkstra algorithm to achieve data communication optimization work.)
sm4
- C实现的Sm4加解密算法,SM4算法是分组加密方法,每次加密16个字节的16进制数据(C implementation of the Sm4 encryption and decryption algorithm, SM4 algorithm is a block encryption method, each encrypted 16 bytes of 16 hexadecimal data)
VB公共基础_第1讲__算法与数据结构
- 本文提供VB公共基础__算法与数据结构的讲解,可以帮助VB学习者(This article provides the VB based __ algorithm and data structure, the interpretation of public can help learners of VB)
SVM支持向量机算法
- 实现简单的SVM算法,简单易学易上手并带有实验数据
sf-demo
- 数据结构演示系统可以演示最基本的数据结构算法帮助理解数据结构的算法(The data structure demonstration system can demonstrate the basic data structure algorithm to help understand the data structure)
三次样条插值
- 运用样条插值算法实现对点的选取及计算和数据预测。(The spline interpolation algorithm is used to realize the selection of the point, the calculation and the prediction of the data.)
碎片数据和示例程序-20160808
- 真实的碎片数据利用插值算法来实现对卫星位置速度的预测和验证(Real debris data use interpolation algorithm to predict and verify the position speed of satellite)
数据包分段与重组算法原理及其实现
- 对原始数据进行数据还原,tcp数据进行分片后,可以对接收的tcp报文进行重新组合,使成为一次完整的会话内容。只是tcp数据分片,不要搞错了(After the TCP data is sliced, the received TCP message can be reassembled to make a complete session content. Just TCP data slices, do not make a mistake)
SVM算法
- SVM的分类与预测。带数据的。可直接使用学习。方便入门。(Classification and prediction of SVM. With data. You can use learning directly.it's convence for us to learn it .)
LSSVM
- 结合风场实时数据以及风场气象数据,分析了实时数据并制定了数据清洗规则;针对风电功率预测领域预测精度低的问题,采用lssvm算法进行预测。(Combined with real-time wind field data and wind field meteorological data, the real-time data was analyzed and data cleaning rules were formulated. For the problem of low predictio
SSA(樽海鞘群算法)
- 使用樽海鞘算法结合极限学习机,应用风电场数据,根据风速温度等条件对风功率进行预测,效果不错(The thalassella algorithm combined with extreme learning machine is used to predict wind power according to wind speed, temperature and other conditions with wind farm data)
基于php的KNN算法实例
- kNN算法又称为k近邻分类(k-nearest neighbor classification)算法。最简单平凡的分类器也许是那种死记硬背式的分类器,记住所有的训练数据,对于新的数据则直接和训练数据匹配,如果存在相同属性的训练数据,则直接用它的分类来作为新数据的分类。用这种算法可以完成最简单的机器学习算法,适合参加科技比赛和演示