Nodejs Array Search Binary binary_search(val, left, right)

Here you can find the source of binary_search(val, left, right)

Method Source Code

Array.prototype.binary_search = function(val, left, right) {
    if (typeof left === 'undefined') left = 0;
    if (typeof right === 'undefined') right = this.length - 1;
    if (left > right) return null;
    var mid = (left + right) >> 1;
    if (val == this[mid]) {
        return mid;
    } else if (val > this[mid]) {
        return this.binary_search(val, mid + 1, right);
    } else {// w w w.  j  a  va  2  s . c o m
        return this.binary_search(val, left, mid - 1);
    }
}

Related

  1. binarySearch(val)
    Array.prototype.binarySearch = function(val){
      var keeper = 0;
      var answer = -1;
      function recursive(arr){
        var len = arr.length;
        var start = Math.floor(len / 2);
        var current = arr[start];
        if (current === val){
          answer = start + keeper;
    ...
    
  2. binarySearch(value)
    Array.prototype.binarySearch = function(value) {
        'use strict';
        if(!value){
            return null;
        var left = 0,
            right = this.length-1,
            find = false,
            middle = null;
    ...
    
  3. binarySearch(value)
    Array.prototype.binarySearch = function(value){
        var items = this;
        console.log(items.length);
        var startIndex  = 0;
        var stopIndex = items.length - 1;
        var middle = Math.floor((stopIndex + startIndex)/2);
        while(items[middle] != value && startIndex < stopIndex){
            if (value < items[middle]){
                stopIndex = middle - 1;
    ...
    
  4. binarySearchbinaryIndexOf;
    function binaryIndexOf(searchElement) {
        'use strict';
        var minIndex = 0;
        var maxIndex = this.length - 1;
        var currentIndex = -1;
        var currentElement;
        while (minIndex <= maxIndex) {
            currentIndex = (minIndex + maxIndex) / 2 | 0;
            currentElement = this[currentIndex];
    ...
    
  5. binarySearchbinarySearch(val, from, to)
    Array.prototype.binarySearch = function binarySearch(val, from, to){
        if (from === undefined) {
            from = 0;
        if (to === undefined) {
            to = this.length-1;
        var mid = Math.ceil((from+to)/2),
            midVal = this[mid];
    ...
    
  6. binarysearch(i)
    Array.prototype.binarysearch = function (i) {
        var l = 0, u = this.length,  m;
        while ( l <= u ) {
            m = ((l+u) >> 1);
            if ( i > this[m].i ) {
                l = m+1;
            } else {
                u = (i == this[m]) ? -2 : m - 1;
        return (u == -2) ? m : -1;
    };
    
  7. bsearch(target)
    Array.prototype.bsearch = function (target) {
      var half = parseInt(this.length / 2);
      if (target === this[half]) {
        return half;
      if (target > this[half]) {
        return half + this.slice(half,this.length).bsearch(target);
      } else {
        return this.slice(0, half).bsearch(target);
    ...