Articles in the data structure category

  1. "[Data Structure] Min Heap"

    Two Charactics of Min Heap

    A Min Heap is represented as a binary tree, this binary tree has two characteristics:

    1. value of a parent node are smaller than which of its child nodes
    2. the binary tree is a complete binary tree
    3. a complete binary tree is defined as:
      • each level …