카테고리 없음

[C] 자기 참조 구조체

nineil91 2021. 1. 20. 12:02
typedef struct _node {
	int data;
	struct _node * next;
}Node;

 의 연결 리스트를 보자.