#include<stdlib.h>
#include<stdio.h>
#include<malloc.h>
typedef struct Node {
struct Node* next;
int data;
};
Node *CreateLink()
{
Node *list = (Node*)malloc
#include<stdlib.h>
#include<stdio.h>
#include<malloc.h>
typedef struct Node {
struct Node* next;
int data;
};
Node *CreateLink()
{
Node *list = (Node*)malloc