> For the complete documentation index, see [llms.txt](https://codingmace.gitbook.io/masterward/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codingmace.gitbook.io/masterward/ctf/2018/csaw-2018.md).

# CSAW CTF Qualifiers 2018

## Bin\_t - Misc \[50 pts] <a href="#bin_t" id="bin_t"></a>

> Binary trees let you do some interesting things. Can you balance a tree?
>
> nc misc.chal.csaw\.io 9001
>
> Equal nodes should be inserted to the right of the parent node. You should balance the tree as you add nodes.

{% file src="/files/-MdrONtFyX1PS1h0X1dF" %}
AVL
{% endfile %}

It inserted all the nodes into an AVL tree and did a preorder traversal

**Flag: flag{HOW\_WAS\_IT\_NAVIGATING\_THAT\_FOREST?}**
