I want to draw complete binary tree with some portion highlighted. I am able to draw the complete binary tree, but not able to highlight the specified portion.
I want to draw the digram given below:
Till now I'm able to do this much:
\documentclass[border=2pt]{standalone}
\usepackage{forest}
\begin{document}
\begin{forest}
for tree={l+=0.07cm} % increase level distance
[1
[2[4][5]]
[3[6][7]]
]
\end{forest}
\end{document}




