Created
February 19, 2018 16:39
-
-
Save Spuffynism/0e68fbaf3df6f6e4d810e16c09377867 to your computer and use it in GitHub Desktop.
heap
This file contains hidden or 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
| let parent = (t, i) => t[((i + 1)>>1) - 1]; | |
| let kids = (t, i) => [t[2*i + 1],t[(i+1)*2]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment