Blog articles/Algorithms: Difference between revisions
DonStewart (talk | contribs) |
(Added subsection "Using random generators" with a link to "Haskell Bits #1: Randomness") |
||
(14 intermediate revisions by 6 users not shown) | |||
Line 12: | Line 12: | ||
===Folds=== | ===Folds=== | ||
* [http://mikeburrell.wordpress.com/2007/02/01/functional-idempotence-optimization/ Folds and functional programming] | * [http://mikeburrell.wordpress.com/2007/02/01/functional-idempotence-optimization/ Folds and functional programming] | ||
* [http://cale.yi.org/index.php/Fold_Diagrams Fold diagrams] | * [http://cale.yi.org/index.php/Fold_Diagrams Fold diagrams] | ||
Line 26: | Line 25: | ||
* [http://jpmoresmau.blogspot.com/2007/06/very-dumb-neural-network-in-haskell.html A neural network in Haskell] | * [http://jpmoresmau.blogspot.com/2007/06/very-dumb-neural-network-in-haskell.html A neural network in Haskell] | ||
* [http://alpmestan.wordpress.com/2009/12/23/hnn-0-1-has-been-released/ The HNN library] (see its [http://www.haskell.org/haskellwiki/HNN haskellwiki page]) | |||
===Design patterns=== | ===Design patterns=== | ||
* [http://jpmoresmau.blogspot.com/2007/11/haskell-design-patterns-are-probably.html Haskell design patterns are (probably) needed] | * [http://jpmoresmau.blogspot.com/2007/11/haskell-design-patterns-are-probably.html Haskell design patterns are (probably) needed] | ||
* [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.105.4354&rep=rep1&type=pdf Design patterns for functional strategic programming] (PDF) | |||
=== Handling platform differences === | |||
* [http://blog.haskell-exists.com/yuras/posts/stop-abusing-cpp-in-haskell.html Stop (ab)using CPP in Haskell sources] | |||
=== Using random generators === | |||
* [http://www.kovach.me/posts/2017-01-30-haskell-bits-randomness.html Haskell Bits #1: Randomness] |
Latest revision as of 21:04, 26 June 2017
Algorithms and techniques
Currying
Folds
- Folds and functional programming
- Fold diagrams
- The Power of Folds
- Folding Incremental Averages in Haskell
- The magic foldr
Dynamic programming
Neural networks
Design patterns
- Haskell design patterns are (probably) needed
- Design patterns for functional strategic programming (PDF)
Handling platform differences