codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Binary Search in JavaScript. A practical Example

Brandon Morelli
codeburst
Published in
7 min readAug 7, 2017

Binary Search. Photo via Pexels

What is a Binary Search?

The Project.

svgData = [
{svgX: 1367.844, data...},
{svgX: 1684.478, data...},
{svgX: 1168.474, data...},
{svgX: 1344.854, data...},
// etc.
]

For loop.

const {svgWidth} = this.props;
let closestPoint = {};
for(let i = 0, c = svgWidth; i < svgData.length; i++){
if ( Math.abs(svgData[i].svgX — this.state.hoverLoc) <= c ){
c = Math.abs(svgData[i].svgX — this.state.hoverLoc);
closestPoint = svgData[i];
}
}
const {svgWidth} = this.props;
let closestPoint = {};

Binary Search

Searching the full array
const m = Math.floor((s + e)/2);
Finding the middle = d[2]
if (t == d[m].svgX) return d[m];
if (e — 1 === s) {
return
Math.abs(d[s].svgX — t) > Math.abs(d[e].svgX — t) ? d[e] : d[s];
}
if (t > d[m].svgX) return binarySearch(d,t,m,e);
if (e — 1 === s) {
return
Math.abs(d[s].svgX — t) > Math.abs(d[e].svgX — t) ? d[e] : d[s];
}

Speed Test

Closing Notes

Check out my recent articles:

If this post was helpful, please click the clap 👏button below a few times to show your support! ⬇⬇

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Brandon Morelli

Creator of @codeburstio — Frequently posting web development tutorials & articles. Follow me on Twitter too: @BrandonMorelli

Responses (6)

Write a response