]> git.rkrishnan.org Git - sicp.git/commitdiff
solution to 2.59 and 2.60
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Thu, 25 Nov 2010 18:10:08 +0000 (23:40 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Thu, 25 Nov 2010 18:10:08 +0000 (23:40 +0530)
src/sicp/ex2_59.rkt [new file with mode: 0644]
src/sicp/ex2_60.rkt [new file with mode: 0644]

diff --git a/src/sicp/ex2_59.rkt b/src/sicp/ex2_59.rkt
new file mode 100644 (file)
index 0000000..b00b1b3
--- /dev/null
@@ -0,0 +1,13 @@
+#lang racket
+
+(require "ch2_3_3.rkt")
+
+(define (union-set set1 set2)
+  (cond ((null? set1) set2)
+        ((null? set2) set1)
+        ((element-of-set? (car set1) set2) (union-set (cdr set1) set2))
+        (else (cons (car set1) (union-set (cdr set1) set2)))))
+
+ (union-set '(1 2 3 4) '(5 6 7 8))
+ (union-set '(1 2 3 4) '(1 2 3 4))
+ (union-set '(1 2 3 4) '(1 2 7 8))
\ No newline at end of file
diff --git a/src/sicp/ex2_60.rkt b/src/sicp/ex2_60.rkt
new file mode 100644 (file)
index 0000000..ea9b304
--- /dev/null
@@ -0,0 +1,30 @@
+#lang racket
+
+(define (element-of-set? x set)
+  (cond ((null? set) #f)
+        ((equal? x (car set)) #t)
+        (else (element-of-set? x (cdr set)))))
+
+(define (adjoin-set x set) 
+  (cons x set))
+
+(define (union-set set1 set2) 
+  (append set1 set2))
+
+(define (intersection-set set1 set2)
+  (cond ((or (null? set1) (null set2)) '())
+        ((element-of-set? (car set1) set2) (cons (car set1) (intersection-set (cdr set1) set2)))
+        (else (intersection-set (cdr set1) set2))))
+
+#|
+ union-set and adjoin-set has changed. Rest remain unchanged. 
+
+ Performance while adding a new element is O(1). Same with union. 
+ intersection-set remains the same - O(m * n). 
+ element-of-set? also remains the same - O (n).
+
+If duplicates are allowed, then Intersection and element-of-set? performance will degrade.
+
+|#
+
+  
\ No newline at end of file