Fricka Fracka
Mumble Grumble
Pages
(Move to ...)
Home
SICP
▼
Thursday, March 31, 2011
Exercises 1.16, 1.17, 1.18
›
1.16 Design a procedure that evolves an iterative exponentiation process that uses successive squaring and uses a logarithmic number of ste...
Tuesday, March 29, 2011
Exercise 1.12: Pascal's Triangle
›
The following pattern of numbers is called Pascal's Triangle 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 Write a procedure the computes ele...
Sunday, March 27, 2011
Exercise 1.11: Iterative and Recursive Procedures
›
A function f is defined by the rule that f(n) = n if n<3 and f(n) = f(n - 1) + 2f(n - 2) + 3f(n - 3) if n>=3. Write a procedure that c...
Friday, March 25, 2011
Iteration, Recursion, and Orders of Growth
›
This is my notes on section 1.2 Recursion Many functions can be defined in terms of themselves. The factorial function is an exampe: $$ ...
Wednesday, March 23, 2011
Substitution Model
›
These are my notes on the discussion from 1.1.3 - 1.1.5 of the text. The substitution model of process evaluation, as described on page 9 ...
Tuesday, March 22, 2011
Structure and Interpretation of Computer Programs
›
I'm going through Structure and Interpretation of Computer Programs (SICP) on my own. I'm going to use this blog document the materi...
Friday, November 19, 2010
Pretty Print
›
I'm trying out some code highlighting here. Pretty Print configuration thanks to Luka Marinko Some Objective-C to try out - (void)applic...
‹
Home
View web version