【链表】创建新结点

#include <stdlib.h>

//
结点 struct linkNode{ int data; struct linkNode *next; };

struct linkNode *s;
s = (struct linkNode *)malloc(sizeof(struct linkNode));
原文地址:https://www.cnblogs.com/CPU-Easy/p/14053223.html