Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help in writing this in OCaml functional programming language asap !!! Write a function called which inserts an into an AA tree. Here is

image text in transcribedimage text in transcribed

Please help in writing this in OCaml functional programming language asap!!!

Write a function called which inserts an into an AA tree. Here is a skeleton of the function: let rec insert item t= match t with | Leaf | Node (lvl,v,l,r). is an and is an AA tree, of course. Note that here means "level", means "value", and and refer to the left and right subtrees of a . Here is the algorithm you should use: - If the tree is a , return a with level 1 containing the item; the subtrees should both be - If the tree is a and the value is the same as the to be inserted, return the original tree. Nothing needs to be done. (This can be a separate case.) - Otherwise, compare to and add the node to the left or right subtree recursively. The resulting tree can be unbalanced, so do first a skew and then a split operation on that tree, and return the resulting tree. Make sure you do the skew before the split, or it won't work correctly. (The figures shown previously explain why.) Examples \#

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_2

Step: 3

blur-text-image_3

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

Database Security

Authors: Alfred Basta, Melissa Zgola

1st Edition

1435453905, 978-1435453906

More Books

Students also viewed these Databases questions

Question

Briefly explain the various types of leadership ?

Answered: 1 week ago

Question

Explain the need for and importance of co-ordination?

Answered: 1 week ago

Question

Explain the contribution of Peter F. Drucker to Management .

Answered: 1 week ago

Question

What is meant by organisational theory ?

Answered: 1 week ago