https://cubelover.tistory.com/10
큐브러버님 블로그에서 splay tree 보고있는데요
struct node {
node *l, *r, *p;
int key;
} *tree;
구조체선언을 이렇게해서 tree 라는놈을 루트를 가리키는 포인터로 사용하던데
이걸 뭐라고 부르나요? 저렇게 선언하는건 처음봐서..
struct node {
node *l, *r, *p;
int key;
}
struct node *tree;
이거랑 같은 표현인가요?
c 스타일임
같은 표현인건가요?
ㅇㅇ