scale + algorithms   12

The Stony Brook Algorithm Repository
A comprehensive collection of algorithm implementations for over seventy of the most fundamental problems in combinatorial algorithms. The problem taxonomy, implementations, and supporting material are all drawn from my book The Algorithm Design Manual. Since the practical person is more often looking for a program than an algorithm, we provide pointers to solid implementations of useful algorithms, when they are available.
programming  algorithms  reference  math 
october 2009 by scale
Algorithmatic
Algorithmatic.com aspires to serve as a global repository of algorithms from all fields, and as an easy-access environment for algorithm design and prototyping through Algorithmatic's programming language and in-browser IDE. Put simply, Algorithmatic.com is for algorithms what Wikipedia is for articles. Also, these algorithms are instantly executable from within the browser.
math  computer  science  algorithms 
august 2009 by scale
bayesian-rating or how to make a fair ranking when item A has 3 votes and item B has 3,000
br = ( (avg_num_votes * avg_rating) + (this_num_votes * this_rating) ) / (avg_num_votes + this_num_votes)
where
* avg_num_votes: The average number of votes of all items that have num_votes>0
* avg_rating: The average rating of each item (again, of those that have num_votes>0)
* this_num_votes: number of votes for this item
* this_rating: the rating of this item
math  algorithms  rankings 
november 2008 by scale
How to calculate binomial coefficients... the old school way
( n ) n! ( n + 1 ) n+1 ( n )
| | = ------------- can instead be written | | = ----- | |
( k ) k! ( n - k!)!
math  mathematics  programming  computation  algorithms 
august 2007 by scale

Copy this bookmark:



description:


tags: