搜索资源列表
aglorithm
- 问题算法源代码:骑士遍历、万年历、N皇后问题回溯算法、动态计算网络最长最短路线、货郎担分枝限界图形演示、货郎担限界算法、矩阵乘法动态规划、网络最短路径Dijkstra算法-problems algorithm source code : Knight traversal, calendar, N Queens backtracking algorithms, Dynamic computing network longest shortest routes, traveling salesman
zuichanggonggongzixulie
- 本程序实现的功能是给出了两个序列,找出他们的最长的公共子序列-this program is the function of the two sequences, identifying their longest public sequences
number_of_subsequence
- 计算一个数列的最长递增子序列和最长递减子序列的长度-Calculation of a series of the longest increasing sub-sequence and the longest decreasing sequence of length
longest
- Problem B:Longest Ordered Subsequence A numeric sequence of ai is ordered if a1 < a2 < ... < aN. Let the subsequence of the given numeric sequence (a1, a2, ..., aN) be any sequence (ai1, ai2, ..., aiK), where 1 <= i1 < i2 < ... &l
longest_subsequence
- 经典的计算最长公子序列,C语言编译,VC++下测试通过-calculate the longest public subsequence
planteau
- 输入一个非递减整数数组,并判断其中最长的数字串-input a non-decreasing array, and determine the number of the longest string
suanf
- 算法和算法设计中的有关于求解最长公共子序列的解决方法,最终可以动态显示求解过程-Algorithms and algorithm design for solving the longest common sub-sequence of solutions, and ultimately the solution process can be dynamic display
LCS
- longest common subsequence implementation
code
- 找出两个字符串的最长公共子串。 给出一个字符串,请删除该字符串的前导空格和尾随空格,中间的空格若多余1个删减到1个。 我是个菜鸟,但软件会是我终生的事业~我有信心学好它,希望站长通融-Two strings to find the longest common sub-string. Given a string, remove the string leading spaces and trailing spaces, if the extra spaces in the middle
SA-LCP
- This code shows you how to create a suffix array and how to use RMQ algorithm to get two suffix s longest common prefix.
USACO-beads
- 该题来自USACO,为最长串的查找,此处方法很笨,有更好方法-The title comes from USACO, for the longest string of the search, stupid way here, there are better ways
Euler-Engineering
- Euler工程,找最长的数列! 定义一个正整数数列,其迭代公式为: n = n/2 (当n为偶数) n = 3n+1 (当n为奇数) 比如从n=13开始,计算这个数列得: 13 ->40->20->10->5->16->8->4->1 这个数列一共有10项。 要求在小于1百万的所有起始数中,哪个数能产生最长的数列。 -Euler project, find the longest series! Define a p
huaxuewenti
- 滑雪中,是为了获得速度,滑的区域必须向下倾斜。Michael想知道在一个区域中最长底滑坡。区域由一个二维数组给出。数组的每个数字代表点的高度。下面是一个例子 1 2 3 4 5 16 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9 一个人可以从某个点滑向上下左右相邻四个点之一,当且仅当高度减小。在上面的例子中,一条可滑行的滑坡为24-17-16-1。当然25-24-23-...-
a2
- Implementation a simple FIFO queue using arrays. Write a programs that will ask the user for the size of the queue. Then it will start reading characters from the keyboard and store them in the queue. If the user enters an empty line then the progr
a3
- Implementation a simple FIFO queue using linked lists. Write a programs that will ask the user for the size of the queue. Then it will start reading characters from the keyboard and store them in the queue. If the user enters an empty line then the
missle
- 一个用于计算最长递增子列的代码,值得玩味。-A code used to calculate the longest increasing subsequence, worth pondering.
length
- 求两个字符串的最长公共子序列,可以手动输入也可以从文件读入字符串,字符串中允许有空格出现,这是广西大学的算法实验代码,如果是本校学生下载请注意修改,这是我自己写的,写得不好请海涵。-Seeking the longest common subsequence of two strings, you can manually input can also be read from a file into a string, string allows spaces appear, the algo
Longest-Common-Subsequences
- Longest Common Subsequences
Longest-repeated-substring
- 一个计算字符串中最长重复子串的算法,开发语言是C/C-A string of the longest repeated substring algorithm development of language is C/C++
the-longest-palindrome-substring
- 对于给定的一个字符串,求出其中最长的回文子串。其中子串的含义是:在原串中连续出现的字符串片段。本算法采用C++编程,一定是你不错的选择!-For a given string,we should find the longest palindrome substring. Which means that the substring: string fragment in the original string of consecutive. The algorithm uses the C++