Did anybody implement Binary Search tree as map Abstract data type in c or is that on any book? Could you share on this post | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Did anybody implement Binary Search tree as map Abstract data type in c or is that on any book? Could you share on this post

Did anybody implement Binary Search tree as map Abstract data type in c or is that on any book? Could you share on this post, because, I need to fix my methods in c

6th Sep 2019, 1:22 PM
Zhenis Otarbay
Zhenis Otarbay - avatar
1 Answer
+ 3
You can implement binary trees as lists: If you are at list position `n`, the left child node is at `2*n` and the right child node is at `2*n+1`. So for example, the tree 1 2 3 4 5 6 7 Could be written as the list [1,2,3,4,5,6,7]. Similarly if you are at any node `n` and you need to find the parent, just divide by 2 :)
6th Sep 2019, 1:55 PM
Schindlabua
Schindlabua - avatar