Clojure Assignment
1: Exercises
Fall 2012, David Matuszek
Write and test the following functions. Please be sure to get the spelling and capitalization right, and the right number and types of parameters, in order to make testing them feasible.
These are mostly unrelated exercises, to give you some experience with Clojure syntax. The earlier ones depend on recursion, while the latter are best done using some of Clojure's second-order functions.
In some cases, for example reversing a list, you may find Clojure functions that already do exactly what you want. Please don't use them, but rather write the functions yourself.
You don't need higher-order functions to program these, but if you see an opportunity to use them, go ahead. Generallly, the purpose is to get you used to writing recursive functions the Clojure way.
(collatz n)n. If n is 1, return 1; else if n is even, return collatz(n/2); else return collatz(3n + 1). (Yes, this is just a complicated way to compute 1.)(lookup key list-of-pairs)key and a list of (key value) pairs, return the value that corresponds to the key, or nil if there is no such pair. You can assume that there is only one such pair. (shallow-reverse lst)lst. For example, the list
(1 2 (3 4)) becomes the sequence
((3 4) 2 1 ) .(remove-duplicates lst)lst. For example, given (1 2 3 1 4 1 2) , remove-duplicates returns a sequence containing the elements (1 2 3 4) , in some order. (my-flatten lst)lst with all inner parentheses (or brackets) removed, returning a "flat" list of values. For example, if lstis (1 (2 3) ( ) (( )) :a) ,
the result should be (1 2 3 :a ). Hint: Use the predicate list?. (skeleton lst)lst, but retains all the sequence structure.
For example, if lst is (1 (2 (3 4)) 5 6 (7) ( )) ,
the result is ((( )) ( ) ( )) .(deep-reverse lst)L at all levels. For example, if lst is (:a (:b :c (:d)) :e) , deep-reverse should return (:e ((:d) :c :b) :a) .(eliminate value lst)lst with all occurrences of
the value removed, at all levels. For example, if lst is (:a :b (:b :c :d (:a (:b))) :e) , (eliminate :b lst) should return(:a (:c :d (:a ())) :e). Note that the value may be any value, for example, a sequence.These are all probably best done with higher-order functions, so please use them wherever they seem to work.
(zap-gremlins text)filter.(rot-13 text)(int ch) and (char n) . Hint: map.(sqrt n)n, using Newton's method. That is, choose some arbitrary number, say 2, as the initial approximation r to the square root; then to get the next approximation, compute the average of r and n/r.
Continue until you have five significant digits to the right of the
decimal point. Do this by taking an infinite series of approximations,
iterate.
(longest-collatz lo hi) lo to hi (including both end points) takes the longest to converge. If two values take equally long to converge, return either value.Write, in a separate file, unit tests for all your methods. Since we
haven't talked about testing yet, here's a model for you to follow.
Notice the use of deftest and is.
(ns user (:use clojure.test))
(deftest test-shallow-reverse
(is (= '(3 2 1) (shallow-reverse '(1 2 3))))
(is (= '(5 (3 4) 2 1) (shallow-reverse '(1 2 (3 4) 5))))
(is (= () (shallow-reverse ()))) )
(deftest test-deep-reverse
(is (= '(3 2 1) (deep-reverse '(1 2 3))))
(is (= '(5 (4 3) 2 1) (deep-reverse '(1 2 (3 4) 5))))
(is (= () (deep-reverse ()))) )
(run-tests)
Zip and turn in your exercises.clj and exercises-test.clj files by 6am, Wednesday September 26 Friday, September 28. As always, only files submitted to Blackboard will be accepted.