Advertisement
MarkUa

Untitled

Sep 13th, 2019
844
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.97 KB | None | 0 0
  1. (define (count lst)
  2.   (cond ((null? lst) 0)
  3.        
  4.         (else (+ 1 (count (cdr lst))))))
  5.  
  6.  
  7. (define (second my_list)
  8.      (cond ((< ( count my_list) 2) "less than 2")
  9.  
  10.                     (else  ( cdr (cdr my_list))
  11.  
  12.                            )
  13.            )
  14.      
  15.      
  16.   )
  17.      (define r '() )
  18.  
  19. (define (first my_list)
  20.          
  21.      (cond ((LIST? my_list)
  22.      (cond  
  23.            ((< ( count my_list) 2) '("less than 2" "fff") )
  24.            ((> ( count my_list) 1) (set! r (cons (car (cdr my_list)) r))
  25.                                    (set! r (cons (car my_list) r))
  26.                                    r )
  27.  
  28.                     (else  '(car my_list)
  29.  
  30.                            )
  31.            )
  32.      
  33.       )
  34.       (else (cdr my_list)))    
  35.   )
  36. (first '(5 3 4 . 4)  )
  37. ;;(count '(4 5 4 2 5 3 5))
  38. ;;(define sec (second '(2 3 5 4)))
  39. ;;(define fir (first '(2  3 5 4)))
  40. ;;(define re '() )
  41. ;;(set! re (cons sec '()))
  42. ;;(set! re (cons fir re))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement