X-Git-Url: https://git.piment-noir.org/?p=TD_LISP.git;a=blobdiff_plain;f=exercices%2Flists.lsp;fp=exercices%2Flists.lsp;h=25360bcf166d051570501485b0e2ed6ddb61c5ca;hp=39114ad8d0ba3f786f287ec5e8c015209ff50add;hb=f1823b2e26078df70254dca41b2f1e5af4443809;hpb=ada8f303fa63f62209dddeab6f4618f5b73a66b7 diff --git a/exercices/lists.lsp b/exercices/lists.lsp index 39114ad..25360bc 100755 --- a/exercices/lists.lsp +++ b/exercices/lists.lsp @@ -161,4 +161,39 @@ (println "list>=") (println (list>= 5 C)) +;(trace true) + +(define (qsort L) + (cond + ((null? L) '()) + ((append + ;the pivot is the first element of the list + (qsort (list< (first L) (rest L))) + (cons (first L) '()) + (qsort (list>= (first L) (rest L))))))) +(println "qsort") +(println (qsort C)) + +;(trace nil) + +;we suppose both lists are flat +(setq L1 '(A ? ? B C D ?)) +(setq L2 '(? A B ? C ? ? D)) + +(define (removeC c L) + (cond + ((null? L) '()) + ((= c (first L))) (removeC c (rest L)) + (((cons (first L) (removeC c (rest L))))))) +(println (removeC A L1)) + +(define (filtre L1 L2 C) + (cond + ((and (null? L1) (null? L2)) true) + ((and (not (null? L1)) (null? L2)) nil) + ((and (null? L1) (not (null? L2))) nil) + ((and (inclu L1 L2) (inclu L2 L1) true)))) +;(println "filtre") +;(println (filtre L1 L2 ?)) + (exit)