자료 구조
-
링크드 리스트자료 구조 2011. 6. 23. 01:50
#ifndef LINKEDLIST_H #define LINKEDLIST_H .. typedef int ElementType; typedef struct tagNode { ElementType Data; struct tagNode* NextNode; } Node; .. #endif Node* SLL_CreateNode(ElementType NewData) { Node* NewNode = (Node*)malloc(sizeof(Node)); NewNode->Data = NewData; NewNode->NextNode = NULL; return NewNode; } void SLL_DestoryNode(Node* Node) { free(Node); } void SLL_AppendNode(Node** Head, N..