资源列表

« 1 2 ... .77 .78 .79 .80 .81 2482.83 .84 .85 .86 .87 ... 2656 »

[数据结构常用算法poj1141

说明:POJ 1141题目源码+源码 题意: 给你一段 括号序列 让你输出 一个最小的让括号合法的序列 黑书上 有将 思路 : dp[a][b] 代表 a b 之间 最小的需要填加序列数目 a==b时 dp[a][b]=1 a>b时 dp[a][b]=0 s[a] 与s[b]配对时 dp[a][b]=dp[a+1][b-1] 否则 dp[a][b]=min(dp[a][k],dp[k+1][b]) a<
<szy> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法kruskal

说明:最优化代码的并查集优化的kruskal代码-it is about kruskal,but it is very simple and easy to use!
<刘查查> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法Sort_template

说明:c/c++各种排序算法模板,提高程序员编码效率。-C/C++A variety of sorting algorithms template
<achuan> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法LCS

说明:最长公共子序列的算法实现。基于动态规划的丝线实现的算法-The longest common subsequence algorithm. Realization of the algorithm based on dynamic programming thread
<achuan> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法priority_queue

说明:优先队列的使用使用优先队列,首先要包函STL头文件"queue",以一个例子来解释吧(呃,写完才发现,这个代码包函了几乎所有我们要用到的用法。-The use of priority queue using a priority queue, we must first package the letter STL header file "queue", an example to explain it (uh, finished o
<achuan> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法maze

说明:用VC6.0编写的生成和求解迷宫的程序,利用堆栈实现,代码比较简单,可以用来参考。-Written by VC6.0 generate and solve the maze procedure, and use the stack, the code is relatively simple, can be used to refer to.
<王岱维> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法dij

说明:dijkstra单源最短路径源代码模板,迪杰斯特拉算法-the short path
<黄银锋> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法lab6ex1

说明:C-C++. Complex number program.
<Du Rag> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法lab9

说明:C-C++. Sorting program.-C-C++. Sorting program.
<Du Rag> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法sitela

说明:迪杰斯特拉求解单源点最短路径,不能有负权值存在-the shortest path
<xiaoxin> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法FIFO

说明:队列是一个先进先出的数据结构,支持业务enque(添加一个项目的结构)和dequeue(删除一个项目从结构)。作为一个FIFO数据结构,项目将在相同的顺序,他们原本排队出列。-A queue is a FIFO data structure that supports the operations enque (to add an item to the structure) and dequeue (to remove an item
<马龙> 在 2024-11-06 上传 | 大小:1024 | 下载:0

[数据结构常用算法w1

说明:c++课程设计,是关于树的,可以作为大家做课程设计是的参考-design it is about tree ,someone who want to do you homework about tree ,it may help
<liuyan> 在 2024-11-06 上传 | 大小:1024 | 下载:0
« 1 2 ... .77 .78 .79 .80 .81 2482.83 .84 .85 .86 .87 ... 2656 »

源码中国 www.ymcn.org