]> git.rkrishnan.org Git - sicp.git/commitdiff
solution to 2.60
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Tue, 7 Sep 2010 10:55:50 +0000 (16:25 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Tue, 7 Sep 2010 10:55:50 +0000 (16:25 +0530)
src/sicp/ex2_60.clj [new file with mode: 0644]

diff --git a/src/sicp/ex2_60.clj b/src/sicp/ex2_60.clj
new file mode 100644 (file)
index 0000000..9c2e249
--- /dev/null
@@ -0,0 +1,13 @@
+(ns sicp.ex2_60)
+
+;;; a set for which duplicates are allowed
+
+(comment
+  "element-of-set? will be same program and union, intersection and
+   adjoin-set will differ. element-of-set? has to traverse a bigger
+   list in the worst case of element not in the set. But union is easy,
+   just concat the two sets. adjoin-set also does not require traversing
+   the set thru element-of-set?. Instead it is a simple cons of the new
+   element with the list representing the set."
+  "If the application involves"
+  )
\ No newline at end of file