in DS edited by
3,225 views
4 votes
4 votes

A complete binary tree with the property that the value at each node is at least as large as the values at its children is known as

  1. binary search tree
  2. AVL tree
  3. completely balanced tree
  4. Heap
in DS edited by
3.2k views

1 Answer

8 votes
8 votes
Best answer
Heap or (max heap) which is a complete binary tree with every node has value more than or equal to  its children
selected by
Answer:

Related questions

2 votes
2 votes
5 answers
4