연결 리스트(Linked List)

■ 연결 리스트(Linked List)

[ 형 선언 ]

typedef struct node *node-ptr;
struct node
{
    int element;
    node-ptr next;
};
typedef node-ptr LIST;
typedef node-ptr position;