Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write set membership test and set union programs in each of the languages Scheme and ML. Each function will only be about two or three

Write set membership test and set union programs in each of the languages Scheme and ML. Each function will only be about two or three lines long.

As data structure for sets, we will use unordered lists. E.g., the Scheme list (11 15 3) represents the set {3, 11, 15}. Each element should appear only once in the set.

Write Scheme functions memv? and union of the following types. The boolean function memv? takes an element and a list and returns true if and only if the element is in the list. Use the comparison eqv? for comparing individual elements. The function union takes two lists and returns a list representing the set union of the arguments. I.e., the result list contains all the elements that are in either argument list.

Similarly, write two ML functions member and union. For comparing individual elements, you can use =.

You can test these programs, but for submitting the homework, its good enough to have them on paper. The ML compiler is available as /usr/bin/sml on the classes server

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Principles Of Database Systems With Internet And Java Applications

Authors: Greg Riccardi

1st Edition

020161247X, 978-0201612479

More Books

Students also viewed these Databases questions