자료구조
-
문제 06-1 연결 리스트를 이용한 스택의 또 다른 구현Data Structure/윤성우의 열혈 자료구조 2019. 7. 7. 04:00
문제 : 원형 연결리스트를 이용해서 스택을 구현해보자. // CLInkedList. h #include #include typedef struct _node{int data;struct _node * next;}Node; typedef struct _list{Node * head;Node * tail;Node * before;Node * cur;int numOfdata;}List; void InitList(List * plist){plist->tail = NULL;plist->numOfdata = 0;}void LInsert(List * plist, int data){Node * newnode = (Node*)malloc(sizeof(Node));newnode->data = data;if (plist->..