|
|
Brainfuck Compiler (v1.1)
|
C++
|
2.82 Years Ago
|
0
|
|
- - -
|
Yes
|
622 Chrs
|
|
|
see http://www.coderprofile.com/networks/source-codes/609/brainfuck-compiler
|
|
|
|
Brainfuck Compiler
|
C++
|
2.82 Years Ago
|
0
|
|
- - -
|
Yes
|
195 Chrs
|
|
|
converts brainfuck to asm, to compile cleanly. manages nested loops and input output correctly, which is more than most brainfuck implementations can say for themselves. most importantly, includes a b
|
|
|
|
SudokuToolkit v1.0
|
C++
|
2.93 Years Ago
|
0
|
|
- - -
|
Yes
|
541 Chrs
|
|
|
solves, generates, and prints Sudoku grids. even includes some methods to make fancy grids using mask files that are fairly basic. any questions, email me at authorblues@gmail.com.
read more at: ht
|
|
|
|
functional programming 1: map()
|
C++
|
3.52 Years Ago
|
1
|
|
7.00
|
- - -
|
1,154 Chrs
|
|
|
maps a function to an array to create a new array. attempts to match the simplicity in code and design afforded by many common functional language, and by extension, the functional programming paradig
|
|
|
|
sieve of eratosthenes
|
C++
|
3.89 Years Ago
|
0
|
|
- - -
|
- - -
|
629 Chrs
|
|
|
finds all prime numbers between 2 and a specified number.
|
|
|
|
lightweight custom vector for c++
|
C++
|
3.99 Years Ago
|
3
|
|
7.00
|
Yes
|
3,054 Chrs
|
|
|
this is a lightweight dynamic length container that operates much like the STL vector. iterator functionality, as well as several other useless functions, have not been included to reduce the frivolou
|
|
|
|
radix sort example
|
C++
|
3.99 Years Ago
|
0
|
|
8.00
|
Yes
|
1,695 Chrs
|
|
|
this will implement a radix sort on any values read in. the easiest way to run this is to redirect input and output, to more easily compare test data to results.
|
|
|
|
newtons method (square root)
|
C++
|
4.7 Years Ago
|
0
|
|
7.00
|
Yes
|
534 Chrs
|
|
|
uses newtons method to find the square root of all of the integers from 0 to 999. zip file includes the output file.
|
|
|
|
brainf**k interpreter
|
C++
|
4.18 Years Ago
|
0
|
|
8.50
|
- - -
|
1,469 Chrs
|
|
|
meant to interpret programs written in brainf**k, supporting the .bf extension. the program is called with a single command line parameter, used to specify the filename of the brainf**k script.
|
|