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
#include <stdio.h>
#include <stdlib.h>
 
typedef int element;
 
typedef struct ListNode {     // ³ëµå Å¸ÀÔ
    element data;
    struct ListNode *link;
} ListNode;
 
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("%d->", p->data);
    printf("NULL \n");
}
ListNode* search_list(ListNode *head, element x)
{
    ListNode *= head;
 
    while (p != NULL) {
        if (p->data == x) return p;
        p = p->link;
    }
    return NULL;    // Å½»ö ½ÇÆÐ
}
 
// Å×½ºÆ® ÇÁ·Î±×·¥
int main(void)
{
    ListNode *head = NULL;
 
    head = insert_first(head, 10);
    print_list(head);
    head = insert_first(head, 20);
    print_list(head);
    head = insert_first(head, 30);
    print_list(head);
    if (search_list(head, 30!= NULL)
        printf("¸®½ºÆ®¿¡¼­ 30À» Ã£¾Ò½À´Ï´Ù. \n");
    else
        printf("¸®½ºÆ®¿¡¼­ 30À» Ã£Áö ¸øÇß½À´Ï´Ù. \n");
    return 0;
}
cs