Differences

This shows you the differences between two versions of the page.

Link to this comparison view

algo [2016/02/05 16:53]
algo [2022/04/16 12:22] (current)
Line 1: Line 1:
 +  * http://bilgin.esme.org/BitsBytes/KalmanFilterforDummies.aspx
 +  * http://jonathankinlay.com/index.php/2015/02/statistical-arbitrage-using-kalman-filter/
 +  * http://tastalian.free.fr/cours.php?part=algo&index=1
 +
 +
 +  unsigned int fact(unsigned int N, unsigned int a){
 +    printf("Appel N == %d, a == %d\n",N,a);
 +    if (N == 0) {  printf("retour a == %d\n",a);   return a;  }
 +    a=fact(N-1, a*N);
 +    printf("10Retour a == %d\n",a);
 +    return a;
 + }
 +  int main(int argc, char **argv) {
 +    fact(5,1);
 +    return(0);
 +  }
 +
 +
 +@tag: [[DNA]]
 +
 +  * http://www.bulletins-electroniques.com/actualites/53932.htm
 +  * http://people.csail.mit.edu/jrk/halide12/# ImG
 +  * http://allgo.irisa.fr/
 +  * https://algorithmia.com/
 +  * https://en.wikipedia.org/wiki/Memoization
 +  * https://en.wikipedia.org/wiki/Dynamic_programming
 +  * https://en.wikipedia.org/wiki/Recursion
 +  * https://en.wikipedia.org/wiki/Graph_theory
 +  * https://github.com/omkarpathak/pygorithm# LearN PythoN
 +
  
algo.txt ยท Last modified: 2022/04/16 12:22 (external edit)
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki