搜索资源列表
RSA MD5 v1.2
- RSA MD5加解密算法,用c++实现,核心部分是c的代码,完全跨平台-RSA encryption and decryption algorithms, used to achieve c, c is the core part of the code, completely cross-platform
PyChem
- PyChem是用Python语言编写的多元变量分析软件。它包括一个前端图形界面用于管理和保存试验数据,并用多元分析的算法分析试验数据。主要的目录结构如下: PyChem\\PURELIB\\pychem 包括前端界面的管理和数据保存,以及核心的分析算法 PyChem\\PURELIB\\pychemlib 包括一些必要的支持库-PyChem Python language is used to prepare the multivariate analysis software. It
DisplayBTree
- 代码注重B树插入、删除的算法逻辑,适用于 学习者研究B树实现的核心思想。代码中无庞杂的无关操作-focus on B-tree code insertion, deletion algorithm logic applies to B-tree research learners to achieve the core idea. The code has nothing to do with the complex operation
wt
- 小波变换算法,运用小波理论,优化其核心算法,提高计算效率-wavelet transform algorithm, using wavelet theory, optimizing their core algorithm, improve computational efficiency
minimum-spanning-tree
- 使用C#图形界面生成最小生成树,核心算法使用Prim算法。图的形状可以在源文件中的图定义处修改。-C# graphical interface to generate a minimum spanning tree, the core algorithm using Prim algorithm. The graph shape defined in the source file in Figure modify.
prim
- 数据结构中的最小生成树实现,根据核心算法在Visual studio6.0的开发环境中运行成功。-Data structure to achieve the minimum spanning tree, according to the core algorithm in the development environment Visual studio6.0 run successfully.
NQueenProblem
- n皇后问题,关于如何计算n皇后问题,里面的代码容易看懂,核心的是在针对试探-回溯算法所用的数据结构的设计上。 程序采用了递归,也就是借用了编译系统提供的自动回溯功能。-N Queen Problem
code
- 本程序采用二叉树的数据结构,,以作为家谱成员及信息(profile)的存储结构,,个人信息包括姓名,,性别,配偶,出生,死亡日期等,,还包括人物编号ID,,附加信息(便于以后扩展需要),以二叉树的遍历搜索,修改,增加,删除等作为核心算法,,并通过MFC界面显示出来,,以windows树结构来展示底层的家谱信息.-family tree
QuickSort
- 快速排序法的实现,全部自己编写.核心算法在partion中实现-quick sort
shujujiegou
- 这是数据结构课程中核心算法,编写简单易读,易仿写。-This is the core algorithm data structure course, to write simple to read, easy to parodies.
InfoExtraction
- 信息抽取。本文中所涉及的程序有两个,一个是在基于规则学习的信息抽取过程中对转换规则的处理,其核心算法就是加载规则文档中的信息进入内存并形成语义集合和规则集合两个链表。-Information extraction. Involved in this process there are two, one is rule-based learning in the process of information extraction processing of the conversion rules
perstrm
- PER编解码的核心算法。用这个就能根据ASN.1定义文件完成数据包的PER编解码。-PER codec core algorithm. With this definition files can be completed according to ASN.1 PER encoding and decoding of data packets.
EightQueen
- 用VC++6.0编译环境下实现的八皇后问题,编译验证成功,具备核心算法-Compiled with VC++6.0 environment to achieve the eight queens problem, the compiler proved to be successful, with the core algorithm
hxsfPzdpp
- 核心算法和最大匹配,对于数据结构的学习较有帮助-Core algorithm and the maximum matching, for the data structure of the study more
Automatic-Carpark-Control-System
- 自动停车场管理系统,停车场管理系统的核心算法,具有停车,等待,出车和价格计算等功能。-Core algorithm of automatic parking management system, parking management system, with parking, waiting out of the bus and prices, and other functions.
Library-Management-System-
- 图书馆管理系统,完成图书馆的核心算法,具有图书录入,借书人录入,借阅图书,归还图书,图书查询和价格计算等功能。-Library management system, complete library of core algorithms, feature book entry, entry borrowers to borrow books, return books, search for a book, and prices, and other functions.
binary_search
- C++二分查找、插值查找、斐波那契查找对比C++的实现源码,不是完整程序,仅是核心算法文件,需要完整功能估计自己得动动手啦。-The C++ binary search interpolation Find to Fibonacci to Find the realization of the contrast C++ source, not a complete program, only the core algorithm file, you need the full functiona
sort_1
- 排序的核心算法,如希尔排序,堆排序,冒泡排序-The core sorting algorithms, such as Hill sort, heap sort, bubble sort
迷宫问题
- 用C++语言实现在迷宫中寻找出路。 核心算法伪代码: do{ 如果当前位置为出口: 当前位置进栈; return 1; while(尝试的方向小于4) { 尝试方向号码对应方向的格子; 如果这个格子是没走过的通路: 当前位置进栈; 将地图上的这个位置标记为走过的; 切换试探的方块为新的当前位置; 跳出这层循环; 否则: 方向号码增加1; } 如果当前位置的四周没有路了: 地图上的当前位置标记成走过的; 出栈; }while(栈不空或者还有方向没试探完);(Using C + + l
DFA算法核心
- DFA算法核心代码,希望大家能善用,如有不全请指教