node *p = tree, **pp;

pp = &(p->l);

.........................

node *x = new node;

*pp = x;        //이게 pp, p, x와 무슨 관계가 생기는건지 모르겠음 ㅠㅆㅠ