Performing Binary Search on Java byte Array Example

  1. /*
  2.   Performing Binary Search on Java byte Array Example
  3.   This java example shows how to perform binary search for an element of
  4.   java byte array using Arrays class.
  5. */
  6.  
  7. import java.util.Arrays;
  8.  
  9. public class BinarySearchByteArrayExample {
  10.  
  11. public static void main(String[] args) {
  12. //create byte array
  13. byte bArray[] = {1,2,4,5};
  14.  
  15. /*
  16.   To perform binary search on byte array use
  17.   int binarySearch(byte[] b, byte value) of Arrays class. This method searches
  18.   the byte array for specified byte value using binary search algorithm.
  19.  
  20.   Please note that the byte array MUST BE SORTED before it can be searched
  21.   using binarySearch method.
  22.  
  23.   This method returns the index of the value to be searched, if found in the
  24.   array.
  25.   Otherwise it returns (- (X) - 1)
  26.   where X is the index where the the search value would be inserted.
  27.   i.e. index of first element that is grater than the search value
  28.   or array.length, if all elements of an array are less than the
  29.   search value.
  30.   */
  31.  
  32. //sort byte array using Arrays.sort method
  33. Arrays.sort(bArray);
  34.  
  35. //value to search
  36. byte searchValue = 2;
  37.  
  38. //since 2 is present in byte array, index of it would be returned
  39. int intResult = Arrays.binarySearch(bArray,searchValue);
  40. System.out.println("Result of binary search of 2 is : " + intResult);
  41.  
  42. //lets search something which is not in byte array !
  43. searchValue = 3;
  44. intResult = Arrays.binarySearch(bArray,searchValue);
  45. System.out.println("Result of binary search of 3 is : " + intResult);
  46.  
  47. }
  48. }
  49.  
  50. /*
  51. Output would be
  52. Result of binary search of 2 is : 1
  53. Result of binary search of 3 is : -3
  54. */

Post new comment

To combat spam, please enter the code in the image.


Suggested Reading

Oracle Magazine
Contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more.
Cost: FREE

View/Subscribe
NASA Tech Briefs
Features exclusive reports of innovations developed by NASA and its industry partners/contractors that can be applied to develop new/improved products and solve engineering or manufacturing problems.
Cost: FREE

View/Subscribe
FierceBiotech IT
Is a free, easy to read weekly email service that brings must read biotech IT news to senior biotech, pharma, and IT executives.
Cost: FREE

View/Subscribe
Simply SQL
Simply SQL is a practical step-by-step guide to writing SQL.
Cost: FREE

View/Subscribe
Simply JavaScript
Packed with full-color examples, Simply JavaScript is all you need to start programming in JavaScript the right way.
Cost: FREE

View/Subscribe
PCMag.com's What's New Now
Lance Ulanoff, Editor in Chief of the PC Magazine Network, brings you this twice-weekly roundup of the latest top tech stories, the best new product reviews, plus special offers from Ziff Davis and its partners.
Cost: FREE

View/Subscribe

Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!