Sharing about JS binary search algorithm and code

零到壹度
Release: 2018-03-20 11:20:52
Original
1446 people have browsed it

This article mainly shares with you the JS binary search algorithm and code. Friends who need it can refer to it. I hope it can help everyone.

4.1 Binary search
Algorithm introduction
Binary search, also known as half search, is a search algorithm for finding specific elements in an ordered array. The search process can be divided into the following steps:
(1) First, start searching from the middle element of the ordered array. If the element happens to be the target element (that is, the element to be found), the search process ends, otherwise proceed to the next step. step.
(2) If the target element is greater than or less than the middle element, search in the half of the array that is greater than or less than the middle element, and then repeat the first step.
(3) If the array at a certain step is empty, it means that the target element cannot be found.
Reference code:
Non-recursive algorithm

function binary_search(arr,key){ var low=0, high=arr.length-1; while(low<=high){ var mid=parseInt((high+low)/2); if(key==arr[mid]){ return mid; }else if(key>arr[mid]){ low=mid+1; }else if(key
        
Copy after login

Recursive algorithm

function binary_search(arr,low,high,key){ if(low>high){ return -1; } var mid=parseInt((high+low)/2); if(arr[mid]==key){ return mid; }else if(arr[mid]>key){ high=mid-1; return binary_search(arr,low,high,key); }else if(arr[mid]
        
Copy after login

The above is the detailed content of Sharing about JS binary search algorithm and code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
js
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!