
数据结构与算法
文章平均质量分 78
touzani
这个作者很懒,什么都没留下…
展开
-
字符串匹配(string matching)算法之二:利用有限自动机
上一篇:字符串匹配(string matching)算法之一 (Naive and Rabin_Karp)有限自动机:一个有限自动机M是一个5元组(Q, q0, A, Σ, δ), 其中:· Q是状态的有限集合· q0 ∈ Q 初始状态· A ⊆ Q 是一个接受状态的集合· Σ 有限的输入字母表·原创 2007-07-12 23:31:00 · 5331 阅读 · 2 评论 -
deque源代码循环数组实现
dequeThe word deque (pronounced either "deck" or "DQ") is a shortend form of double-ended queueand denoted a list in which entries can be added or removed from either the first or the lastposition of原创 2007-05-27 22:31:00 · 1978 阅读 · 0 评论 -
二分查找函数binary_search
函数模版: templatetypename T>int binary_search (T arr[], int size, T target) ;参数说明:T: 模版参数arr : 数组首地址, size: 数组元素个数, T target : 需要查找的值返回值: 如果数组中找到target, 返回其下标否则返回 -1要求数组元素顺序非递减templatetypename T>原创 2007-05-26 23:57:00 · 10782 阅读 · 0 评论 -
字符串匹配(string matching)算法之一 (Naive and Rabin_Karp)
内容 来自《算法导论》《Introduction to algorithms》 作者CLRS编辑by Touzani http://blog.youkuaiyun.com/touzani/archive/2007/05/29/1628885.aspx字符串匹配(String matching)问题的形式定义: 假设文本(Text)是一个长度为n的数组T[1…n], 模式(Pattern)是一个长原创 2007-05-30 23:47:00 · 8148 阅读 · 1 评论 -
插入排序, 合并排序, 快速排序C++源代码
下面3个排序函数都是对数组进行排序, 排序后为非递减序列函数模版, 两个参数, 一个是数组首地址, 另一个是元素个数, 如 merge_sort( A, 20);/**//*******************************Insertion sort ****************************************/template class T>void原创 2007-06-01 00:55:00 · 3430 阅读 · 0 评论 -
根据前序遍历序列和中序遍历序列构造二叉树
根据前序遍历序列和中序遍历序列可以构造唯一的二叉树。假设序列为string型根据前序遍历的特点, 知前序序列(Pre)的首个元素(Pre[0])为根(root), 然后在中序序列(In)中查找此根(Pre[0]), 根据中序遍历特点, 知在查找到的根(root) 前边的序列为左子树, 后边的序列为右子树。 设根前边有left个元素.. 则又有, 在前序序列中, 紧跟着根(root)的left原创 2007-06-04 10:43:00 · 9053 阅读 · 0 评论 -
二叉树非递归中序遍历(借用stack)
递归的中序遍历, template class Entry>void Binary_treeEntry>::recursive_inorder(Binary_nodeEntry> *sub_root, void (*visit)(Entry ))...{ if (sub_root != NULL) ..原创 2007-06-06 17:56:00 · 1642 阅读 · 0 评论 -
Prim最小生成树算法
MST-PRIM(G, w, r)// G: graph, w: weight, r:root 1 for each u ∈ V [G] 2 do key[u] ← ∞ 3 π[u] ← NIL 4 key[r] ← 0 5 Q ← V [G] 6 while Q ≠ Ø 7 do u ← EXTRACT-MIN原创 2007-09-19 13:51:00 · 2351 阅读 · 0 评论 -
using tries
By luison9999 TopCoder Member IntroductionThere are many algorithms and data structures to index and search strings inside a text, some of them are included in the standard libraries, but转载 2007-11-21 18:44:00 · 1254 阅读 · 0 评论 -
alpha-beta剪枝搜索
// basic Alpha-Beta search; move bestmove; int alphabeta(int depth, int alpha, int beta, bool isMyTurn) ...{ if (gameOver || depth == 0) ...{ return evaluation(); }原创 2007-11-21 19:37:00 · 4149 阅读 · 0 评论 -
Disjoint-set Data Structures
By vlad_D TopCoder MemberIntroduction Many times the efficiency of an algorithm depends on the data structures used in the algorithm. A wise choice in the structure you use in solving a p转载 2007-11-30 06:07:00 · 3482 阅读 · 0 评论 -
The Sprague-Grundy theory of impartial games
An impartial game is a two-player game in which both players have complete information, no chance is involved, and the legal moves from each position are the same for both players. We will deal with转载 2007-12-03 08:39:00 · 1980 阅读 · 0 评论 -
Algorithm Games
By rasto6sk TopCoder Member Introduction The games we will talk about are two-person games with perfect information, no chance moves, and a win-or-lose outcome. In th转载 2007-12-03 17:38:00 · 1692 阅读 · 0 评论 -
算法教程---Mathematics for TopCoders
作者: dimkadimon补充 by touzaniMathematics and computer science often go hand in hand. This article discusses the theory and practical application to some of the more common mathematical constructs.转载 2007-05-25 00:51:00 · 3891 阅读 · 0 评论 -
优先级队列priority_queue源代码
chapter 6.5 (《算法导论.第6章 优先级队列) ,, 函数名参照C++ STL中priority_queue数组实现.源代码:#includeiostream>using namespace std;typedef int queue_entry;#define maxque 20 // small number for testclass Prior原创 2007-05-28 11:19:00 · 2287 阅读 · 0 评论 -
图论基础
图的表示常用的两种方法:邻接表与邻接矩阵每一个点对应一个集合set(邻接表),存储与此点相连的点。 1. -)点用连续存储 a. 邻接表用连续存储表 b. 邻接表用链式表 List neighbors[max_size];二)点与邻接表都用链式表class Edge{Vertex *end_point; //边的终点Edge *next_edge; //邻接表的下一条边 }原创 2007-07-12 16:45:00 · 1555 阅读 · 0 评论 -
0/1背包问题解法
对n个物品进行编号1,2...n最优子结构:假设对一个重量为W,n个物品的最优解法是S. 设解法S中所拿的物品最大的编号是i.则S-{i}一定是对于重量为W − Wi , 包含物品为1…i-1的最优解 Dynamic progamming:定义 c[i,w]为对于最大重量为w,物品为1….i的解法的价值则有c[i,w] = 0原创 2007-07-14 15:23:00 · 1541 阅读 · 0 评论 -
Introduction to String Searching Algorithms
Rabin-Karp and Knuth-Morris-Pratt Algorithms By TheLlama TopCoder Member The fundamental string searching (matching) problem is defined as follows: given转载 2007-07-16 21:27:00 · 1864 阅读 · 0 评论 -
平摊分析 (amortized analysis) -算法导论学习笔记
http://freelet.blogspot.com/2008/12/amortized-analysis.html在平摊分析中,执行一系列数据结构操作所需要的时间是通过执行的所有操作求平均而得出的。平摊分析可以用来证明在一系列操作中,通过对所有操作求平均之后,即使其中单一的操作具有较大的代价,平均代价还是很小的。平摊分析不牵涉到概率, 平摊分析保证在最坏情况下,每个操作具有的平均性能。原创 2007-07-18 02:09:00 · 37211 阅读 · 1 评论 -
Java大整数实现计算catalan数
Problem: http://acm.sgu.ru/problem.php?contest=0&problem=130CircleOn a circle border there are 2k different points A1, A2, ..., A2k, located contiguously. These points connect k chords so that each of原创 2007-07-29 07:57:00 · 2081 阅读 · 0 评论 -
Catalan数公式推导
如何把下列递归公式 { f(0)=f(1)=1 } f(n)=f(0)*f(n-1-0)+f(1)*(n-1-1)+f(2)*f(n-1-2)+....+f(n-1-0)*f(0) 转化为 f(n)= C(2n,n)/(n+1) 可以利用母函数(发生函数) 令G(x)=f(0)+f(1)x+f(2)x^2+... 那么递归公式左边就是G(x)的n次项系数。右原创 2007-05-15 22:27:00 · 7824 阅读 · 0 评论 -
String matching using Rabin-Karp Algorithm
ProblemBrian is an enthusiast of computer games, especially those that simulate virtual reality. Now he is in front of the Star Gate. In order to open the gate he must break the protection as quickl原创 2007-05-15 02:57:00 · 2875 阅读 · 1 评论 -
Substring
ProblemDr lee cuts a string S into N pieces,s[1],…,s[N]. Now, Dr lee gives you these N sub-strings: s[1],…s[N]. There might be several possibilities that the string S could be. For example, if D原创 2007-05-16 18:16:00 · 1079 阅读 · 0 评论 -
七种qsort排序方法
一、对int类型数组排序 程序代码 程序代码int num[100]; Sample: int cmp ( const void *a , const void *b ) { return *(int *)a - *(int *)b; } qsort(num,100,sizeof(num[0]),cmp); 二、对char类型数组排序(同int类型)程序代码 程序代码char word转载 2007-05-20 01:18:00 · 965 阅读 · 0 评论 -
追MM的各种算法
动态规划,基本上就是说:你追一个MM的时候,需要对该MM身边的各闺中密友都好,这样你追MM这个问题 就分解为对其MM朋友的问题,只有把这些问题都解决了,最终你才能追到MM。因此,该问题适用于聪明的MM,懂得“看一个人,不是看他如何对你,而是看他如何对他人。”的道理,并且对付这样的MM总能得到最优解。但确定是开销 较大,因为每个子问题都要好好对待。。。。贪心法,基本上就是: 你追一个MM的时候,从相转载 2007-05-21 01:48:00 · 2107 阅读 · 1 评论 -
选择排序(Selection Sort)
选择排序(Selection Sort)是说,每次从数列中找出一个最小的数放到最前面来,再从剩下的n-1个数中选择一个最小的,不断做下去。比如班上的MM搞选美活动,有人叫我给所有MM排个名。我们通常会用选择排序,即先找出自己认为最漂亮的,然后找第二漂亮的,然后找第三漂亮的,不断找剩下的人中最满意的。C++代码如下template class Record>void Sortable_lis原创 2007-05-21 00:22:00 · 1327 阅读 · 0 评论 -
Binary Search
By lovro TopCoder Member Binary search is one of the fundamental algorithms in computer science. In order to explore it, well first build up a theoretical backbone, then use that to implemen转载 2007-12-11 00:15:00 · 4289 阅读 · 1 评论