Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is my recursive search function in Java int terSearch(int arr[], int l, int r, int x) that returns location of x in a given

This is my recursive search function in Java int terSearch(int arr[], int l, int r, int x) that returns location of x in a given sorted array arr[lr] is present, otherwise -1. The terSearch search function, unlike the binary search, must consider two dividing points int d1 = l + (r - l)/3 int d2 = d1 + (r - l)/3

int ternarySearch(int arr[], int l, int r, int x)

{ if (r >= l) { int mid1 = l + (r - l)/3; int mid2 = mid1 + (r - l)/3;

// If x is present at the mid1 if (arr[mid1] == x) return mid1;

// If x is present at the mid2 if (arr[mid2] == x) return mid2;

// If x is present in left one-third if (arr[mid1] > x) return ternarySearch(arr, l, mid1-1, x);

// If x is present in right one-third if (arr[mid2] < x) return ternarySearch(arr, mid2+1, r, x);

// If x is present in middle one-third return ternarySearch(arr, mid1+1, mid2-1, x);

} return -1; }

can someone help wme with the following data structures question please

"(b) What is the running time complexity of your function? Justify. "

I just need to know the running time complexitiy of the function above, aloong with a justification/explanation

please help

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

Graph Databases New Opportunities For Connected Data

Authors: Ian Robinson, Jim Webber, Emil Eifrem

2nd Edition

1491930896, 978-1491930892

More Books

Students also viewed these Databases questions

Question

Define training and development.

Answered: 1 week ago