Javascript half-lookup character position in the array (ordered list)

Source: Internet
Author: User

CopyCode The Code is as follows :/**
* Half-lookup character position in the array (ordered list)
* @ Param array the retrieved Array
* @ Param x the character to be searched
* @ Type int
* @ Returns: the position of the character in the array.-1 is not found.
*/

Function binarysearch (array, x ){
VaR lowpoint = 1;
VaR higpoint = array. length;
VaR returnvalue =-1;
VaR midpoint;
VaR found = false;
While (lowpoint <= higpoint )&&(! Found )){
Midpoint = math. Ceil (lowpoint + higpoint)/2 );
// Console. Log (lowpoint + "=" + midpoint + "=" + higpoint );
If (x> array [midpoint-1]) {
Lowpoint = midpoint + 1;
}
Else if (x <array [midpoint-1]) {
Higpoint = midpoint-1;
}
Else if (x = array [midpoint-1]) {
Found = true;
}

}
If (found ){
Returnvalue = midpoint;
}
Return returnvalue;
}
/* Var array2 = [9,100,109,]; */
VaR array2 = ['A', 'B', 'C', 'D', 'E', 'F', 'G'];
Console. Log (binarysearch (array2, 'C '));

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.