为什么在C中的链表实现中使用指针很重要?
例如:
typedef struct item
{
type data;
struct item *next;
} Item;
typedef struct list
Item *head;
} List;
Run Code Online (Sandbox Code Playgroud)
如果Ill在没有指针的情况下使用相同的实现会发生什么?