-
-
Save nikolas/d53a54ec2d32258844225b52e5c2d691 to your computer and use it in GitHub Desktop.
insert an element into a sorted array of objects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1d array | |
for (var i = 0, len = arr.length; i < len; i++) { | |
if (somevalue < arr[i]) { | |
arr.splice(i, 0, somevalue); | |
break; | |
} | |
} | |
return arr; | |
// an array of objects | |
var newObj = { | |
key: value | |
}; | |
for (var i = 0, len = arr.length; i < len; i++) { | |
if (somevalue < arr[i].key) { | |
arr.splice(i, 0, newObj); | |
break; | |
} else if (i === arr.length - 1) { | |
// If this is reached, newObj belongs at the end | |
// of the array. | |
arr.push(newObj); | |
break; | |
} | |
} | |
return arr; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment