资源列表

« 1 2 ... .14 .15 .16 .17 .18 2119.20 .21 .22 .23 .24 ... 2656 »

[数据结构常用算法qSort

说明:快速排序算法是基于分治策略的另一个排序算法。其基本思想是,对于输入的字数组a[p:r],按以下3个步骤进行排序: (1)分解:以a[p]为基准元素将a[p:r]划分成3段a[p:q-1],a[q]和a[q+1:r],使得a[p:q-1]中任何元素小于等于a[q],a[q+1:r],中的任何元素大于等于a[q]。下标q在划分过程中确定 (2)递归求解:通过递归调用快速排序算法,分别对a[p:q-1]和a[q+1:r]进行排序
<忠波> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法matrixChain

说明:动态规划法解矩阵连乘积的最优计算次序问题。按照分解最优解的结构,建立递归关系,计算最优值,构造最优解4个步骤-Dynamic programming solution matrix product even calculate the optimal order problem. Optimal solution in accordance with the decomposition of the structure, the est
<忠波> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法1

说明:用于删除广义表中所有值为*的元素,例如删除广义表((a,b),a,(d,a))中所有a个结果是广义表((b),(d))。-Delete generalized table for all value of* the element, for example, delete the generalized form ((a, b), a, (d, a)) for all a result is a generalized form ((b
<> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法nizhuanguangyibiao

说明:通过编写递归算法,将广义表中的各个数据元素逆转。 -Through the preparation of recursive algorithms, generalized form of the various data elements reversed.
<杨勇> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法DLB

说明:关于单链表的C、C++ 语言实现, 上传给那些需要数据结构实验的 人-On a single list of C, C++ Language, upload the data structure to those in need of the experiment were
<lucien> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法Dijkstra

说明:单源最短路径问题:给定带权有向图G=(V,E)。给定V中的一个顶点v,称为源。要计算从源到所有其它各顶点的最短路径长度。-Single-source shortest path problem: a given weighted directed graph G = (V, E). Given a vertex V in v, known as the source. To calculate from the source to al
<忠波> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法200405165111

说明:长整数的计算,用C实现,数据结构。是数据结构(严蔚敏)课后习题的实现。-Long integer calculations, using C realize, data structures. Is a data structure (Yan Wei-min) after the realization of exercises.
<艾雪辉> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法operation

说明:表达式求值 数据结构栈的应用 自己写的课程设计代码-Expressions evaluate to the application stack data structure to write their own curriculum design code
<shelling> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法yinhangjiasuanfa

说明:银行家算法,实现了避免死锁的算法,是比较高级的程序,体现了资源分配与进程之间的关系-Bankers algorithm avoid deadlock algorithm, which is a more advanced procedure, reflects the distribution of resources and the process of the relationship between
<liangbinny> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法bmhs_algorithm

说明:一种比较理想,快速的字符串匹配算法-BMHS算法,它与BM算法的性能相当,但是算法复杂度较低。-An ideal, fast string matching algorithm-BMHS algorithm, it is quite the performance of BM algorithm, but the algorithm complexity low.
<malota> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法nqueen

说明:N皇后问题(c语言版),N默认为8,N值可以进行修改-N Queen
<xsly> 在 2024-10-20 上传 | 大小:1024 | 下载:0

[数据结构常用算法queen

说明:queens8皇后问题,经典的数据结构和算法问题,用c++实现,有详细的中文注释.-Queen
<> 在 2024-10-20 上传 | 大小:1024 | 下载:0
« 1 2 ... .14 .15 .16 .17 .18 2119.20 .21 .22 .23 .24 ... 2656 »

源码中国 www.ymcn.org