source: liacs/cvp/scheme/README@ 2

Last change on this file since 2 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

File size: 970 bytes
Line 
1/*
2 * Rick van der Zwet
3 * 0433373
4 * Scheme programming assigment 1a
5 * Licence: BSD
6 * $Id: README.txt 379 2007-12-11 16:18:01Z rick $
7 */
8
91)
10Scheme implemented/documented in exercise1a.scm
11C++ implemented/documented in exercise1b.scm
12
13The main differences between programming in C++ and scheme are caused
14due the fact that that input in scheme actually means something on which
15operations could be preformed. In C++ the input is just treated as a
16normal string and their needs to be an whole lot of logic around it to
17make it meaningfull.
18
19It just seems of writing the scheme core code for a particular
20application, which requires a whole lot of thinking
21
222)
23Scheme implemented/documented in exercise2.scm
24In order to have this implemented you will need take close watch of the
25internal data representation, we could see and distigust serveral
26things:
27* () = empty leaf
28* (a) = leaf
29
30In order to breadth depth we need to add the remains of an found tree to
31the end.
Note: See TracBrowser for help on using the repository browser.