Welcome![Sign In][Sign Up]
Location:
Search - 算法编程举例

Search list

[Other resourceMatlab

Description: 《MATLAB 遗传算法工具箱及应用》 作 者:雷英杰 张善文 李续武 周创明 出版社:西安电子科技大学出版社 本书系统介绍MATLAB遗传算法和直接搜索工具箱的功能特点、编程原理及使用方法。全书共分为9章。第一章至第四章介绍遗传算法的基础知识,包括遗传算法的基本原理,编码、选择、交叉、变异,适应度函数,控制参数选择,约束条件处理,模式定理,改进的遗传算法,早熟收敛问题及其防止等。第五章至第七章介绍英国设菲尔德(Sheffield)大学的MATLAB遗传算法工具箱及其使用方法,举例说明如何利用遗传算法工具箱函数编写求解实际优化问题的MATLAB程序。第八章和第九章介绍MathWorks公司最新发布的MATLAB遗传算法与直接搜索工具箱及其使用方法。
Platform: | Size: 660168 | Author: 526yue | Hits:

[Other resourcegraph_theory

Description: 介绍了图论一些经典算法并且举例说明了matlab编程实现
Platform: | Size: 47616 | Author: 林玉彬 | Hits:

[Books数据结构(C#语言版)

Description: 数据结构(C#语言版) 计算机程序语言书: 目 录 第1章 绪论 1 1.1 数据结构 1 1.1.1 学习数据结构的必要性 1 1.1.2 基本概念和术语 2 1.2 算法 7 1.2.1 算法的特性 7 1.2.2 算法的评价标准 8 1.2.3 算法的时间复杂度 9 1.3 数学预备知识 11 1.3.1 集合 11 1.3.2 常用的数学术语 11 1.3.3 对数 12 1.3.4 递归 12 1.4 C预备知识 13 1.4.1 指针 13 1.4.2 结构体 14 1.5 C#预备知识 15 1.5.1 接口 15 1.5.2 泛型编程 19 本章小结 24 习题 25 第2章 线性表 27 2.1 线性表的逻辑结构 27 2.1.1 线性表的定义 27 2.1.2 线性表的基本操作 28 2.2 顺序表 30 2.2.1 顺序表的定义 30 2.2.2 顺序表数据关系的语言描述 31 2.2.3 顺序表数据操作的语言描述 32 2.2.4 顺序表应用举例 42 2.3 单链表 46 2.3.1 单链表的定义 47 2.3.2 单链表数据关系的语言描述 48 2.3.3 单链表数据操作的语言描述 50 2.3.4 单链表应用举例 65 2.4 其他链表 73 2.4.1 双向链表 73 2.4.2 循环链表 76 本章小结 76 习题 77 第3章 栈和队列 78 3.1 栈 78 3.1.1 栈的定义及基本运算 78 3.1.2 顺序栈的存储和运算实现 80 3.1.3 链栈的存储和运算实现 85 3.1.4 栈的应用举例 90 3.2 队列 96 3.2.1 队列的定义及基本运算 96 3.2.2 循环顺序队列的存储和运算 实现 98 3.2.3 链队列的存储和运算实现 106 3.2.4 队列的应用举例 111 本章小结 113 习题 113 第4章 串和数组 115 4.1 串 115 4.1.1 串的基本概念及基本运算 115 4.1.2 串存储及基本运算实现 116 4.1.3 串的基本操作的实现 120 4.1.4 模式匹配 125 4.2 数组 131 4.2.1 数组的逻辑结构 131 4.2.2 数组的内存映像 132 本章小结 133 习题 133 第5章 树和二叉树 134 5.1 树 134 5.1.1 树的定义 134 5.1.2 树的相关术语 135 5.1.3 树的逻辑表示 136 5.1.4 树的基本操作 137 5.2 二叉树 138 5.2.1 二叉树的定义 138 5.2.2 二叉树的性质 139 5.2.3 二叉树的存储结构 141 5.2.4 二叉链表存储结构的语言 描述 143 5.2.5 二叉树的遍历 146 5.2.6 线索二叉树 150 5.3 树与森林 153 5.3.1 树的存储 153 5.3.2 树、森林与二叉树的转换 157 5.3.3 树和森林的遍历 160 5.4 哈夫曼树 160 5.4.1 哈夫曼树的基本概念 160 5.4.2 哈夫曼树的实现 162 5.4.3 哈夫曼编码 166 5.5 二叉树的应用举例 167 本章小结 171 习题 172 第6章 图 174 6.1 图的基本概念 174 6.1.1 图的定义 174 6.1.2 图的基本术语 175 6.1.3 图的基本操作 178 6.2 图的存储结构 179 6.2.1 邻接矩阵 179 6.2.2 邻接表 187 6.3 图的遍历 199 6.3.1 深度优先遍历 199 6.3.2 广度优先遍历 202 6.4 图的应用 205 6.4.1 最小生成树 205 6.4.2 最短路径 210 6.4.3 拓扑排序 216 本章小结 218 习题 219 第7章 排序 221 7.1 基本概念 221 7.2 简单排序方法 222 7.2.1 直接插入排序 222 7.2.2 冒泡排序 225 7.2.3 简单选择排序 226 7.3 快速排序 229 7.4 堆排序 233 7.5 希尔排序 240 7.6 表插入排序 242 7.7 归并排序 247 7.8 树型选择排序 251 7.9 基数排序 252 7.9.1 多关键码排序 252 7.9.2 链式基数排序 253 7.10 各种排序方法的比较与讨论 255 本章小结 256 习题 257 第8章 查找 259 8.1 基本概念和术语 259 8.2 静态查找表 259 8.2.1 顺序查找 260 8.2.2 有序表的折半查找 261 8.2.3 索引查找 265 8.3 动态查找表 266 8.3.1 二叉排序树 266 8.3.2 平衡二叉树 276 8.3.3 B-树和B+树 278 8.4 哈希表 285 8.4.1 哈希表的基本概念 286 8.4.2 常用的哈希函数构造方法 286 8.4.3 处理冲突的方法 288
Platform: | Size: 1345925 | Author: lovevicky | Hits:

[VC/MFC图像模式识别—VC++技术实现

Description: 模式识别在日常生活中随处可见,和我们生活息息相关,相关的算法和程序代码的实现在本书籍中进行了非常详细的介绍,希望对大家有所帮助
Platform: | Size: 22857147 | Author: zhho369 | Hits:

[matlabMatlab

Description: 《MATLAB 遗传算法工具箱及应用》 作 者:雷英杰 张善文 李续武 周创明 出版社:西安电子科技大学出版社 本书系统介绍MATLAB遗传算法和直接搜索工具箱的功能特点、编程原理及使用方法。全书共分为9章。第一章至第四章介绍遗传算法的基础知识,包括遗传算法的基本原理,编码、选择、交叉、变异,适应度函数,控制参数选择,约束条件处理,模式定理,改进的遗传算法,早熟收敛问题及其防止等。第五章至第七章介绍英国设菲尔德(Sheffield)大学的MATLAB遗传算法工具箱及其使用方法,举例说明如何利用遗传算法工具箱函数编写求解实际优化问题的MATLAB程序。第八章和第九章介绍MathWorks公司最新发布的MATLAB遗传算法与直接搜索工具箱及其使用方法。
Platform: | Size: 659456 | Author: 526yue | Hits:

[matlabgraph_theory

Description: 介绍了图论一些经典算法并且举例说明了matlab编程实现-Introduced a number of classical graph theory algorithms and matlab programming examples realize
Platform: | Size: 47104 | Author: 林玉彬 | Hits:

[Software EngineeringArithmetric

Description: 浅谈VB.NET的密码算法及其在信息安全中的应用 Simple Discussion on Cryptology Arithmetric of VB.NET and Its Usage in Information Secuirity ,介绍了Microsoft的最新开发工具Visual Basic 2005(简称VB.NET)中与密码算法相关的System.Security.Cryptography命名空间(简称SSC).举例说明了利用SSC提供的类编写信息安全程序的方法,其中包括对称加密、非对称加密和数字签名算法的编程.-On the VB.NET password algorithm and its application of information security Simple Discussion on Cryptology Arithmetric of VB.NET and Its Usage in Information Secuirity, introduced the latest Microsoft development tools, Visual Basic 2005 (referred to as VB.NET) with the cryptographic algorithm associated System.Security.Cryptography namespace (the SSC). For example illustrates the use of SSC-type provided by the preparation of information security procedures, including symmetric encryption, asymmetric encryption and digital signature algorithm programming.
Platform: | Size: 354304 | Author: 刘皓 | Hits:

[Windows DevelopNAND_FLASH_FACTORY_PROGRAM

Description: 一、 概况 1. NAND 闪存的种类 2. NAND 闪存的框架 3. 非全页的编程(Partial Page Programming) 4. 从NAND 启动(Booting From NAND) 二、 NAND 闪存的可靠性问题 1. 坏块管理(Bad Block Management,BBM) 2. 坏块管理算法的规范 (BBM Algorithm Specification) 3. 6 个工厂编程的坏块管理的要素(Six BBM Factory Programming Elements) 1) 坏块的替换策略(Bad Block Replacement Strategy,BBR) 2) 分区(Partitioning) 3) 纠错码(Error Correction Codes ,ECC ) 4) 备用区的使用(Spare Area Placement,SAP) 5) 未用好块的格式(Free Good Block Formatting) 6) 动态元数据(Dynamic Metadata) 4. 系统举例 5. 通用的工厂编程坏块管理方案(Universal Factory Programming BBM Scheme) 6. 第三方和客制化的坏块管理方案(Third-party and Custom BBM Schemes) 三、 对Managed NAND 编程(Programming Managed NAND) 四、 NAND 的序列号(Serializing NAND) 五、 结论-I. Overview 1. NAND type flash memory 2. NAND flash memory framework 3. Non-full-page programming (Partial Page Programming) 4. From the NAND boot (Booting From NAND) Second, NAND flash memory reliability problems 1. Bad block management (Bad Block Management, BBM) 2. Bad block management algorithm specification (BBM Algorithm Specification) 3.6 factory-programmed elements of bad block management (Six BBM Factory Programming Elements) 1) bad block replacement policy (Bad Block Replacement Strategy, BBR) 2) partition (Partitioning) 3) error-correcting code (Error Correction Codes, ECC) 4) the use of spare area (Spare Area Placement, SAP) 5) the format is not good use of the block (Free Good Block Formatting) 6) The dynamic metadata (Dynamic Metadata) 4. System Example 5. GM s factory-programmed bad block management program (Universal Factory Programming BBM Scheme) 6. Third-party and custom bad block management program (Third-party and Custom BB
Platform: | Size: 2125824 | Author: livimi | Hits:

[AI-NN-PRATR-7-SVM

Description: SVM算法的介绍性PPT,主要介绍SVM算法以及编程举例。-SVM algorithm introductory PPT, introduces the SVM algorithm and programming examples.
Platform: | Size: 947200 | Author: mxf | Hits:

[AI-NN-PRnet-neutral

Description: 人工神经网络的编程 举例 算法 代码 学习人工神经网络的可以-Artificial neural network learning algorithm code programming examples of artificial neural network can look at E Ee
Platform: | Size: 29696 | Author: zhuwule | Hits:

[AI-NN-PRmatlab-book

Description: 本书系统介绍MATLAB遗传算法和直接搜索工具箱的功能特点、编程原理及使用方法。全书共分为9章。第一章至第四章介绍遗传算法的基础知识,包括遗传算法的基本原理,编码、选择、交叉、变异,适应度函数,控制参数选择,约束条件处理,模式定理,改进的遗传算法,早熟收敛问题及其防止等。第五章至第七章介绍英国设菲尔德(Sheffield)大学的MATLAB遗传算法工具箱及其使用方法,举例说明如何利用遗传算法工具箱函数编写求解实际优化问题的MATLAB程序。第八章和第九章介绍MathWorks公司最新发布的MATLAB遗传算法与直接搜索工具箱及其使用方法。-This file describes changes to the Solr Cell (contrib/extraction) module. See SOLR-284 for details.
Platform: | Size: 9704448 | Author: 高婧 | Hits:

[matlabmatlabaCPP

Description: 实用最优化方法各种算法的matlab编程和C++编程举例-Practical methods of optimization algorithms matlab programming and C++ programming example
Platform: | Size: 363520 | Author: 危行才 | Hits:

[OtherJingTongMtalabYouHua

Description: 《精通MATLAB最优化计算》优化的工具箱和自编函数实现双管齐下 算法原理→流程→编程→举例一杆到底 60余个程序,100余个实例一一精编精讲-" Mastering MATLAB optimization calculation optimization toolbox and self-function of the two-pronged algorithm principle → process → Programming → example one in the end more than 60 months of the program, more than 100 instances of eleven for fine Jingjiang
Platform: | Size: 60017664 | Author: 俞吉 | Hits:

[matlabMidpoint-segmentation-algorithm

Description: 首先可以说明中点分割线段裁剪算法的基本原理,其次可以编程实现算法,最后通过举例验证算法有效性-First, the basic principles can explain the midpoint of the dividing line clipping algorithm, the algorithm can be programmed followed, and finally verify the validity of the algorithm by example
Platform: | Size: 2048 | Author: 王瑞 | Hits:

[matlabKruskalANDC

Description: 最小生成树(Kruskal算法)举例和详细的C语言代码编程。-Kruskal and C
Platform: | Size: 198656 | Author: Haozero | Hits:

[Other算法技术手册-中文版

Description: 关于windows编程的代码工具,内有算法思想在其中,有举例,运筹方面的算法表示(This is a common function query tool for Windows programming, which includes explanations of functions used in various programs, for example, and so on.)
Platform: | Size: 39909376 | Author: 穷奇 | Hits:

[matlabexample1

Description: matlab编程基础的遗传算法工具箱应用举例,对初学者很有帮助(Application examples of genetic algorithm toolbox)
Platform: | Size: 1024 | Author: 小厘 | Hits:

[Documents常用计算机算法简介及C语言举例_马丽娟

Description: 常用计算机算法简介及C语言举例,C语言计算概述(Commonly used computer algorithm introduction and C language example, C language calculation overview)
Platform: | Size: 451584 | Author: Saberknight | Hits:

CodeBus www.codebus.net