  |
Search Algorithm - http://en.wikipedia.org/wiki/Search_algorithm
From Wikipedia, the free encyclopedia. Classification, summaries of the popular searching algorithms, links. |
  |
Sorting Algorithm - http://en.wikipedia.org/wiki/Sort_algorithm
From Wikipedia, the free encyclopedia. Classification, summaries of the popular sorting algorithms, links. |
  |
Postman's Sort - http://rrsd.com/
A linear time general purpose sorting algorithm. Included is a description of the algorithm and downloadable executables for Windows computers. |
  |
String Searching - http://en.wikipedia.org/wiki/String_searching_algorithm
From Wikipedia, the free encyclopedia. Definition, classification, common algorithms, links. |
  |
GNU libavl - http://www.stanford.edu/~blp/avl/
Details of this collection of binary search tree and balanced tree library routines by Ben Pfaff. Etext in HTML/PDF/PS and source distribution. |
  |
Fast Median Search - http://ndevilla.free.fr/median
Overview of algorithms to find the median in a list of values; implementations and links are also provided. |
  |
Exact string matching algorithms - http://www-igm.univ-mlv.fr/~lecroq/string/
Common pattern search approaches with C implementations. |
  |
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. |
  |
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. |
  |
Fibonacci search in C - http://www.ics.forth.gr/~lourakis/fibsrch/
Fibonacci search and C sample code. |
  |
Ternary Search Trees - http://www.cs.princeton.edu/~rs/strings/
Fast Algorithms for Sorting and Searching Strings - The original paper and examples by Jon Bentley and Robert Sedgewick. |
  |
Sorting Algorithms - http://www.softpanorama.org/Algorithms/sorting.shtml
Overview of many sorting techniques and corresponding links. |
  |
Sorting and Searching Algorithms By Thomas Niemann. - http://epaperpress.com/sortsearch/download/sortsearch.pdf
Collection of algorithms for sorting and searching from arrays to B-Trees - theory, examples, implementation. |
  |
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. |
  |
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. |