#include #include #include struct node { int key; uint32_t height; struct node *left; struct node *right; }; int main(void) { return 0; }