¿¬°á ¸®½ºÆ®(Linked List)

¡á ¿¬°á ¸®½ºÆ®(Linked List)

[ Çü ¼±¾ð ]

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