Algorithms

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.scriptol.com/programming/list-algorithms.php A complete list of all major algorithms (300), in any domain. The goal is to provide a ready to run program for each one, or a description of the algorithm. Programming languages include Java, JavaScript and PHP, C, C++ either in direct form or generated from a Scriptol source.

List of Algorithms

Regular expressions can be scary…really scary. Fortunately, once you memorize what each symbol represents, the fear quickly subsides. If you fit the title of this article, there’s much to learn! Let’s get started. Section 1: Learning the Basics The key to learning how to effectively use regular expressions is to just take a day and memorize all of the symbols. http://net.tutsplus.com/tutorials/javascript-ajax/you-dont-know-anything-about-regular-expressions/

You Don’t Know Anything About Regular Expressions: A Complete Guide

http://academicearth.org/courses/introduction-to-algorithms

Introduction to Algorithms | MIT Video Course

About Massachusetts Institute of Technology The Massachusetts Institute of Technology (MIT), founded in 1861, is located in Cambridge, Massachusetts, and is one of the foremost U.S. institutions in science and technology. It is comprised of five schools and one college, including the renowned School of Engineering and Sloan School of Management, offering Bachelor's, Master's, and Doctorate degrees. Notable alumni include Ben Bernanke, Chairman of the Federal Reserve, Benjamin Netanyahu, prime minister of Israel, and American astronaut "Buzz" Aldrin. Explore Our Degree Programs
hash

Posted by Nick Johnson | Filed under python , coding , tech , damn-cool-algorithms In a previous Damn Cool Algorithms post, I talked about BK-trees, a clever indexing structure that makes it possible to search for fuzzy matches on a text string based on Levenshtein distance - or any other metric that obeys the triangle inequality . Today, I'm going to describe an alternative approach, which makes it possible to do fuzzy text search in a regular index: Levenshtein automata . Introduction http://blog.notdot.net/2010/07/Damn-Cool-Algorithms-Levenshtein-Automata

Damn Cool Algorithms: Levenshtein Automata