Archive for the ‘Math’ Category.

Math Quick Reference

Here is a quick reference sheet for some statements that may come in handy during a math class

Math.pdf

[Digg] [Reddit] [DZone]

Primes Generator

Generates a list of primes by the Erasthosnese sieve method. Uses a bitset to store the array of booleans so it uses much less space then a comparable solution.

primes.cpp

[Digg] [Reddit] [DZone]