Answered step by step
Verified Expert Solution
Question
1 Approved Answer
OCAML PROGRAMMING LANGUAGE ONLY Write a recursive function called partition that takes a pivot item and a list as arguments, and returns a tuple containing
OCAML PROGRAMMING LANGUAGE ONLY
Write a recursive function called partition that takes a pivot item and a list as arguments, and returns a tuple containing a list of items from the list that are less than the pivot and a list of items from the list that are greater than or equal to the pivot. If the original list contains duplicate items then the partitions should also contain duplicate items. If the original list is empty, both of the partitions should be empty. You may not use any built-in list functions.
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