C语言实现链表
typedef struct _NODE_S
{
int u32Val;
struct _NODE_S *pstNext;
}NODE_S;
NODE_S* LIST_CreateNode(int u32Val)</
typedef struct _NODE_S
{
int u32Val;
struct _NODE_S *pstNext;
}NODE_S;
NODE_S* LIST_CreateNode(int u32Val)</