1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
typedef struct {
    char name[100];
} element;
 
typedef struct ListNode {     // ³ëµå Å¸ÀÔ
    element data;
    struct ListNode *link;
} ListNode;
 
// ¿À·ù Ã³¸® ÇÔ¼ö
void error(char *message)
{
    fprintf(stderr, "%s\n", message);
    exit(1);
}
ListNode* insert_first(ListNode *head, element value)
{
    ListNode *= (ListNode *)malloc(sizeof(ListNode));    //(1)
    p->data = value;                    // (2)
    p->link = head;    // Çìµå Æ÷ÀÎÅÍÀÇ °ªÀ» º¹»ç    //(3)
    head = p;    // Çìµå Æ÷ÀÎÅÍ º¯°æ        //(4)
    return head;
}
 
void print_list(ListNode *head)
{
    for (ListNode *= head; p != NULL; p = p->link)
        printf("%s->", p->data.name);
    printf("NULL \n");
}
 
// Å×½ºÆ® ÇÁ·Î±×·¥
int main(void)
{
    ListNode *head = NULL;
    element data;
 
    strcpy(data.name, "APPLE");
    head = insert_first(head, data);
    print_list(head);
 
    strcpy(data.name, "KIWI");
    head = insert_first(head, data);
    print_list(head);
 
    strcpy(data.name, "BANANA");
    head = insert_first(head, data);
    print_list(head);
    return 0;
}
cs