About Algorithm

From My Limbic Wiki

Most Famous Algorithm

  • Euclide
  • Karatsuba
  • Horner

Sorting Algoritms

  • Fibonacci
  • Dichotomy
  • Factorial
  • Hanoï tours
  • Bubble

Graphs

  • Dijkstra
  • Topologic sorting

Cryptography & Compression

  • Shannon-Fano
  • Huffman
  • Diffie-Hellman
  • RSA

Prime Numbers

  • ?

Singleton

  • Class Singleton with a private constructor
    • Private static parameter single_instance set to null
    • Private static Method getInstance(): if the parameter is null, instanciate singleton class, if not return the existing instance;

Every instantiation has to be called as: Singleton.getInstance();

Most beautiful Equation