-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path13.lisp
92 lines (71 loc) · 2.04 KB
/
13.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
; 13.
; a) A linear list is given. Eliminate from the list all elements from N to N steps, N-given.
(defun _remove-from-n-to-n (l n k)
(cond
((null l) nil)
((= k 1) (_remove-from-n-to-n (cdr l) n n))
(T (cons (car l) (_remove-from-n-to-n (cdr l) n (- k 1))))
)
)
(defun remove-from-n-to-n (l n)
(_remove-from-n-to-n l n n)
)
(print (remove-from-n-to-n '(1 2 3 4 5 6 7 8) 3))
; => '(2 3 4 5 7 8)
; b) Write a function to test if a linear list of integer numbers has a "valley" aspect (a list has a valley
; aspect if the items decrease to a certain point and then increase. Eg. 10 8 6 17 19 20). A list must
; have at least 3 elements to fulfill this condition.
(defun _valley (l decreasing)
(cond
((= (list-length l) 1) (if decreasing nil T))
((and (> (car l) (cadr l)) (not decreasing)) nil)
((and (< (car l) (cadr l)) decreasing) (_valley (cdr l) nil))
(T (_valley (cdr l) decreasing))
)
)
(defun valley (l)
(if (< (list-length l) 3)
nil
(_valley l T)
)
)
(print (valley '(5 4 3 4)))
; => T
; c) Build a function that returns the minimum numeric atom from a list, at any level.
(defun list-min (l)
(cond
((= (list-length l) 1) (car l))
(T (min (car l) (list-min (cdr l))))
)
)
(print (list-min '(1 2 3 1)))
; => 1
(defun remove-occurences (l e)
(cond
((null l) nil)
((= (car l) e) (remove-occurences (cdr l) e))
(T (cons (car l) (remove-occurences (cdr l) e)))
)
)
(print (remove-occurences '(1 2 1 3 4 1 2) 1))
; => '(2 3 4 2)
(defun remove-min-element (l)
(remove-occurences l (list-min l))
)
(print (remove-min-element '(1 2 1 1 4 5)))
; => '(2 4 5)
; d) Write a function that deletes from a linear list of all occurrences of the minimum element.
(defun min_nb (a b)
(if (< a b) a b)
)
(defun min_num (l)
(cond
((null l) 999999)
((and (null (cdr l)) (numberp (car l))) (car l))
((numberp (car l)) (min_nb (car l) (min_num (cdr l))))
((listp (car l)) (min (min_num (car l)) (min_num (cdr l))))
(t (min_num (cdr l)))
)
)
(print (min_num '(1 2 (3 (a) (1 3)) 4 5)))
; => 1