How many values you had to examine to determine outcome

Assignment Help JAVA Programming
Reference no: EM132101141

Please use JAVA only to solve following problem:

Using either of the sorting algorithms presented in class, sort your array, then implement the following search algorithm to look for a value requested by the user:

1. Look at the middle value of the array; if the value is found, you're done. Otherwise, the value is either greater or less than this value

2. If the search didn't end in the step above, search the half of the array in which the value must be found (if the value is less than the middle value, search the half from the beginning up to midpoint-1; if the value is greater than the middle value, search from midpoint+1 up to length -1) using the same method - that is, examine the middle value.

3. Continue the process of dividing the search area in half and examining the midpoint until either the value is found, or you are down to a search area of length 1 which does not contain the value.

4. As with the original search method, your program should report whether or not the value was found, and how many values you had to examine to determine the outcome.

Here"s code below for Binary Search:

import java.util.*;

public class Lab8part3

{

public static void main (String [] args)

{

// populate array

int [] array = new int [ 1000];

for ( int i = 0;i <array.length;i++){

array [i] = (int) (Math.random()*5000+ 1);

}

// get inout from user

Scanner kb= new Scanner (System.in);

System.out.print(" please enter a number between 1 and 5000: " );

int input = kb.nextInt();

// search for input in the array

for (int i = 0; i < array.length;i++){

if (array[i] == input){

System.out.println("we found "+ input + " at index " + i );

System.exit(0);

}

}

System.out.println (" number is not found in array");

}

}___________________________________

Reference no: EM132101141

Questions Cloud

Successful with retention of repatriates : How can employers be more successful with retention of repatriates?
Advantages and disadvantages of an organization : What would be advantages and disadvantages of an organization's Human Resources department aligning
Create visually appealing document that tells a story : This next project requires you to consider how information and data can be composed to create a visually appealing document that effectively tells a story
Write a procedure that accepts pointers to two arrays : Write a procedure that accepts pointers to two arrays of double words and the size of both arrays (The arrays are equal in length.).
How many values you had to examine to determine outcome : Look at the middle value of the array; if the value is found, you're done. Otherwise, the value is either greater or less than this value .
Write a series of functions that convert a decimal number : Write a series of functions that convert a decimal number into binary and octal.
What do the abbreviations stand for : What do the abbreviations stand for? How does each of them work? What are the limitations for the number of devices that can be connected for each of
What is the concept of globally right source : What is the concept of Globally Right source and how can an organization use this to add value to their activities to increase their competitive positions?
Company face when creating a strategic plan : What are some of the legal issues a company face when creating a strategic plan?

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd