Skip to content

Instantly share code, notes, and snippets.

@ankitamasand
Created September 25, 2019 03:44
Show Gist options
  • Save ankitamasand/1291552aeaa064afd0ed6b66642fed1b to your computer and use it in GitHub Desktop.
Save ankitamasand/1291552aeaa064afd0ed6b66642fed1b to your computer and use it in GitHub Desktop.
class MinHeap {
constructor () {
/* Initialing the array heap and adding a dummy element at index 0 */
this.heap = [null]
}
getMin () {
/* Accessing the min element at index 1 in the heap array */
return this.heap[1]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment