  |
Sorting Algorithm - http://en.wikipedia.org/wiki/Sorting_algorithm
From Wikipedia, the free encyclopedia. Classification, summaries of the popular sorting algorithms, links. |
  |
Search Algorithm - http://en.wikipedia.org/wiki/Search_algorithm
From Wikipedia, the free encyclopedia. Classification, summaries of the popular searching algorithms, links. |
  |
Exact String Matching Algorithms - http://www-igm.univ-mlv.fr/~lecroq/string/
Common pattern search approaches with C implementations. |
  |
Compact Guide to Sorting and Searching - http://www.epaperpress.com/sortsearch/
Algorithms and data structures. Source code in C and VB is included. Demonstration applets in Java. |
  |
Wikipedia: String Searching Algorithm - http://en.wikipedia.org/wiki/String_searching_algorithm
Definition, classification, common algorithms, links. |
  |
Suffix Tree - http://mila.cs.technion.ac.il/~yona/suffix_tree/
ANSI C implementation of E. Ukkonen's algorithm that makes it convenient to do string matching against a data set in O(N) time. Includes source code, an interface in Perl, and a write-up. |
  |
Common Comparison Sorts - http://linux.wku.edu/~lamonml/algor/sort/sort.html
Explanation, algorithm analysis, empirical data, and source code for the bubble, heap, insertion, merge, quick, selection, and shell sorts. |
  |
Understanding SoundEx Algorithms - http://www.creativyst.com/Doc/Articles/SoundEx1/SoundEx1.htm
Article describing and discussing the SoundEx searching algorithm and enhancements to make it more accurate. Includes SoundEx conversion form and Open licensed source code in C, JavaScript, and Perl. |
  |
FlashSort - http://www.neubert.net/FSOIntro.html
Sorting by in place permutation with time complexity O(n) using an auxiliary vector. Papers, animations and implementations. |
  |
String Searching With Suffix Trees - http://marknelson.us/1996/08/01/suffix-trees/
Fast String Searching With Suffix Trees by Mark Nelson |
  |
Sequitur - http://sequitur.info/
A method for inferring compositional hierarchies from strings, useful for recognizing lexical structure in long sequences. Examples, source code, description, publications, and an on-line demonstration. |
  |
Discussion of Sorting Algorithms - http://atschool.eduweb.co.uk/mbaker/sorts.html
Sorting algorithms illustration by Mark Baker |
  |
http://wasa.sourceforge.net/ - http://wasa.sourceforge.net/
A Java implementation of the Wealthy Adaptative Search Algorithm, a constraint-solving algorithm using a stochastic approach. |
  |
Sorting Algorithms Visualized - http://arnosoftwaredev.blogspot.com/2005/01/sorting-algorithms-visualized.html
Applet visualizing various sorting algorithms, English version of Peter Weigel and Andreas Boltzmann applet. |
  |
Robsort GNU implementation - http://www.robsort.org
An O(n!) algorithm with downloads for Win98 and Unix platforms. |