关于单链表-------
哪位高手能给我一个单链表表头初始化的例子啊?我新手,做了半天了 实在不会啊 跪求--------
程序代码:
#include <malloc.h> #include <stdio.h> struct Node { int data; Node *next; }; Node *head = (Node*)malloc(sizeof(Node)); int main() { head->next = NULL; return 0; }