-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathF1.rkt
91 lines (62 loc) · 1.53 KB
/
F1.rkt
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
(define occ 0)
(define hits 0)
(define (indicies str)
(string->list str)
)
(define (noOfHits lst )
(cond
[(equal?(length lst) 0)
occ
]
[(not(equal? (car lst) #\* ))
(set! occ (+ occ 1))
(noOfHits( cdr lst))
]
[else
(noOfHits(cdr lst))
]
)
)
(define (occurrences word x)
(cond
[(equal?(length (indicies word)) 0)
occ
]
[(equal? (car (indicies word)) x )
(set! occ (+ occ 1))
(occurrences (list->string(cdr (indicies word))) x )
]
[else
(occurrences (list->string(cdr (indicies word))) x )
]
)
)
(define (replace-indices lst ind ele)
(cond
[(equal?(length ind) 0)
lst
]
[(empty? ele)
lst
]
[else
(list-set lst (car ind) (car ele))
(replace-indices lst (cdr ind)(cdr ele))
]
)
)
;; F1 : i / F1 : ii
(occurrences "word" #\o )
(set! occ 0)
(occurrences "woord" #\o )
(set! occ 0)
(occurrences "wooord" #\o )
(set! occ 0)
;; F1 : iii
;;(noOfHits '(#\a #\* #\* ))
;;(set! hits 0)
;;(noOfHits '(#\a #\a #\* ))
;;(set! hits 0)
;;F1 : iv
;(replace-indices '(#\a #\* #\* ) '(1 2) #\b)
;(replace-indices '(#\a #\* #\* ) '() #\b)