Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please code in OCaml language. The method should also be recursive too. I already have a code that can do this, but I can't seem

image text in transcribed

Please code in OCaml language. The method should also be recursive too.

I already have a code that can do this, but I can't seem to complete the 4th example above. I keep getting the answer 1 instead of the 501 for

maxFuncChain 0 [(fun x -> x - 1); (fun x -> x * -500); (fun x -> x + 1)].

Again, please code in OCaml and in recursion.

- Description: MaxProcChain from Project 1a makes its return, OCaml style! This function takes in an initial value and a list of functions, and decides to either apply each function or not to maximize the final return value. For example, if I have a list of functions: funcc] and an initial value x, then I take the maximum value of - Type: 'a ('a 'a) list 'a - Examples: maxFuncChain 2[( fun xx+6)]=8 maxFuncChain2[( fun xx+4); (fun xx4)]=24 maxFuncChain4[( fun xx2);( fun xx+10)]=14 maxFuncChain[( fun xx1); (fun xx500);( fun xx+1)]=501 maxFuncChain "hello" [( fun xx"1"); (fun xx"2");(funxx"3")]=" "hello3

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

Students also viewed these Databases questions