Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please help implement the following function in LISP. The specification is below with a sample run, and required testing. Thanks! Function 1 (5 p) Write
Please help implement the following function in LISP. The specification is below with a sample run, and required testing. Thanks!
Function 1 (5 p) Write and run a recursive Lisp function, called "linearp," that tests if its argument is an atom or a linear list. The function returns true if the argument is an atom or a linear list and NIL otherwise. A linear list is a list consisting of a sequence of atoms: (Al An) For instance, the function should have the following behavior: nearp 'A) > (linearp (A B)) (linear-p '((A B C))) NIL -) (linear ,((A B) (C (D E)))) NIL Your submission should contain: the definition of "linearp" with comments. - a testing session of (linearp '(A B (BC) D))" showing the use of tracing; a testing session without tracing, using the following testing function: (defun test-linearp (print (linearp NIL)) (print (linearp'A)) (print (linearp (A BCD) (print (linearp (A B (B C) D)) (print (linearp (A B) C D)) Function 1 (5 p) Write and run a recursive Lisp function, called "linearp," that tests if its argument is an atom or a linear list. The function returns true if the argument is an atom or a linear list and NIL otherwise. A linear list is a list consisting of a sequence of atoms: (Al An) For instance, the function should have the following behavior: nearp 'A) > (linearp (A B)) (linear-p '((A B C))) NIL -) (linear ,((A B) (C (D E)))) NIL Your submission should contain: the definition of "linearp" with comments. - a testing session of (linearp '(A B (BC) D))" showing the use of tracing; a testing session without tracing, using the following testing function: (defun test-linearp (print (linearp NIL)) (print (linearp'A)) (print (linearp (A BCD) (print (linearp (A B (B C) D)) (print (linearp (A B) C D))
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started