请设计算法求指针为p的结点的左兄弟结点。如果结点p存在左兄弟,则返回其左兄弟指针;否则返回空指针NULL。
struct Node* fun(struct Node* node){ return node->left == NULL? NULL:node->left; }