자료구조 - 이중 링크드 리스트
자료구조 - 이중 링크드 리스트단일 링크드 리스트와 비슷하지만 이전 노드를 찾을수 있다. 1. 구조체 선언 => head 노드만 있어도 구현 가능typedef struct _node{ int value; struct _node *next; struct _node *prev;}node, *nptr; typedef struct _list{ nptr head; nptr tail; int count;}list; 2.init 선언list *init_list(){ list *lptr = (list*)malloc(sizeof(list)); lptr->head = NULL; lptr->tail = NULL; lptr->count = 0; return lptr;} 3.add listvoid add_list(list *l..