链表

#include <stdio.h>
#include <stdlib.h>

struct node
{
int data;
node* next;
};

node* createNode(int data)
{
node* temp_node = NULL;
temp_node = (node*)malloc(sizeof(node));
temp_node->data = data;
temp_node->next = NULL;
return temp_node;
}

int main()
{
node* temp_node = createNode(10);
printf("%d\n", temp_node->data);
printf("%d\n", temp_node->next);
return 0;
}

posted @ 2018-07-21 11:12  6+0  阅读(109)  评论(0编辑  收藏  举报