Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In
Continue with Google
or use

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here
Continue with Google
or use

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Answerclub

Answerclub Logo Answerclub Logo

Answerclub Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • About Us
  • Contact Us

Welcome to Answerclub.org

Questions | Answers | Discussions | Knowledge sharing | Communities & more.

Get App on Playstore
Home/ Questions/Q 155737
Next
In Process

Answerclub Latest Questions

Aryan Prajapat
  • 0
  • 0
Aryan PrajapatKnowledge Contributor
Asked: July 20, 20242024-07-20T16:10:00+05:30 2024-07-20T16:10:00+05:30In: Education

Implement Binary Search in Java using recursion.

  • 0
  • 0
Implement Binary Search in Java using recursion.
1
  • 1 1 Answer
  • 22 Views
  • 0 Followers
  • 0
Answer
  • Report

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Aryan Prajapat
    Aryan Prajapat Knowledge Contributor
    2024-07-20T16:12:16+05:30Added an answer on July 20, 2024 at 4:12 pm

    // Java Program to Illustrate Recursive Binary Search
    // Importing required classes
    import java.util.*;
    // Main class
    class GFG {
    // Method 1
    // Recursive binary search
    // Returns index of x if it is present
    // in arr[l..r], else return -1
    int binarySearch(int arr[], int l, int r, int x)
    {
    // Restrict the boundary of right index
    // and the left index to prevent
    // overflow of indices
    if (r >= l && l x)
    return binarySearch(arr, l, mid – 1, x);

    // Else the element can only be present
    // in right subarray
    return binarySearch(arr, mid + 1, r, x);
    }
    // We reach here when element is not present in
    // array
    return -1;
    }
    // Method 2
    // Main driver method
    public static void main(String args[])
    {
    // Creating object of above class
    GFG ob = new GFG();
    // Custom input array
    int arr[] = { 2, 3, 4, 10, 40 };

    // Length of array
    int n = arr.length;
    // Custom element to be checked
    // whether present or not
    int x = 10;
    // Calling above method
    int result = ob.binarySearch(arr, 0, n – 1, x);
    // Element present
    if (result == -1)
    // Print statement
    System.out.println(“Element not present”);

    // Element not present
    else
    // Print statement
    System.out.println(“Element found at index ”
    + result);
    }
    }

      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

You must login to add an answer.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 56,767
  • Answers 51,273
  • Popular
  • Answers
  • Mr.Doge

    What are the best AI tools available for Creative Designing?

    • 47 Answers
  • Mr.Doge

    How is tax calculated in India for investing in US ...

    • 41 Answers
  • Mr.Doge

    How to invest in NCD/ Corporate Bonds in India? Is ...

    • 35 Answers
  • Propickle 3D
    Propickle 3D added an answer . Virtual site tours are changing the way people experience… October 6, 2025 at 12:03 pm
  • singhalglobal singhal
    singhalglobal singhal added an answer The manufacturing of HDPE bags begins with the polymerization of… October 6, 2025 at 11:51 am
  • singhalglobal singhal
    singhalglobal singhal added an answer An ABS plastic sheet is created by blending three monomers… October 6, 2025 at 11:46 am

Related Questions

  • What industries benefit most from Third-Party Inspection Services?

    • 1 Answer
  • How has Momentum’s IIT JEE Test Series helped students crack ...

    • 1 Answer
  • What factors should be considered when choosing a weed mat ...

    • 1 Answer
  • Why are Indian folk tales still popular among people?

    • 0 Answers
  • Why are Indian folk tales still popular among people?

    • 0 Answers

Trending Tags

ai biology branch of study business cricket education english food general knowledge. general science geography gk health history poll question science sports technology travel

Explore

  • Home
  • Groups
  • Add group
  • Catagories
  • Questions
    • New Questions
    • Most Answered
  • Polls
  • Tags
  • Badges

© 2024 Answerclub.org | All Rights Reserved
Designed & Developed by INFINITEBOX & TechTrends