i\'m trying to make LL rotation of AVL tree
typedef struct Node { int key, bf; struct Node *left, *right; } Node;
make Node sturct witho