-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path9.lisp
123 lines (104 loc) · 2.96 KB
/
9.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
; 9.
; a) Write a function that merges two sorted linear lists and keeps double values.
(defun merge_sorted (a b)
(cond
((null a) b)
((null b) a)
((<= (car a) (car b)) (cons (car a) (merge_sorted (cdr a) b)))
(T (cons (car b) (merge_sorted a (cdr b))))
)
)
(print (merge_sorted '(1 2 3 3) '(3 4 4 5 5 7)))
; => (1 2 3 3 4 4 5 7)
; b) Write a function to replace an element E by all elements of a list L1 at all levels of a given list L.
(defun my_append (l k)
(if (null l)
k
(cons (car l) (my_append (cdr l) k))
)
)
(defun replaceEList (l e k)
(cond
((and (atom l) (equal e l)) k)
((atom l) l)
(T (mapcar #'(lambda (l) (replaceEList l e k)) l))
)
)
(print (replaceEList '(1 2 3 (3 4 5) ((3) 3)) 3 '(0 0)))
;=> (1 2 0 0 (0 0 4 5) ((0 0) 0 0))
; c) Write a function to determines the sum of two numbers in list representation, and returns the
; corresponding decimal number, without transforming the representation of the number from list to
; number.
(defun digit (l k c)
(cond
((null l) (mod (+ k c) 10))
((null k) (mod (+ l c) 10))
(T (mod (+ l k c) 10))
)
)
(print (digit nil 9 1))
;=> 0
(defun carry (l k c)
(cond
((null l) (if (> (- (+ k c) (mod (+ k c) 10)) 9)
(/ (- (+ k c) (mod (+ k c) 10)) 10)
(mod (+ k c) 10)
)
)
((null k) (if (> (- (+ l c) (mod (+ l c) 10)) 9)
(/ (- (+ l c) (mod (+ l c) 10)) 10)
(mod (+ l c) 10)
)
)
(T (if (> (- (+ l k c) (mod (+ l k c) 10)) 9)
(/ (- (+ l k c) (mod (+ l k c) 10)) 10)
(mod (+ l k c) 10)
)
)
)
)
(print (carry 9 nil 1))
;=> 1
(defun my_append (l k)
(if (null l)
k
(cons (car l) (my_append (cdr l) k))
)
)
(defun my_reverse (l)
(cond
((null l) nil)
((listp (car l)) (my_append (my_reverse (cdr l)) (list (my_reverse (car l)))))
(T (my_append (my_reverse (cdr l)) (list (car l))))
)
)
(defun sumList (l k c)
(cond
((and (null l) (null k)) (if (= 1 c) (list 1) nil))
(T (my_append (sumList (cdr l) (cdr k) (carry (car l) (car k) c)) (list (digit (car l) (car k) c))))
)
)
(defun solve (l k)
(sumList (my_reverse l) (my_reverse k) 0)
)
(print (solve '(9 9) '(1 2)))
;=> (1 1 1)
; d) Write a function to return the greatest common divisor of all numbers in a linear list.
(defun _gcd (a b)
(cond
((and (not (numberp a)) (not (numberp b))) nil)
((not (numberp a)) b)
((not (numberp b)) a)
((equal b 0) a)
(T (_gcd b (mod a b)))
)
)
(defun list_gcd (l)
(cond
((and (atom (car l)) (null (cdr l))) (car l))
((listp (car l)) (_gcd (list_gcd (car l)) (list_gcd (cdr l))))
(T (_gcd (car l) (list_gcd (cdr l))))
)
)
(print (list_gcd '(24 ( 16 (12 A B)) 72)))
;=> 4