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
55
56
57
58
59
#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* concat_list(ListNode *head1, ListNode *head2)
{
    if (head1 == NULLreturn head2;
    else if (head2 == NULLreturn head1;
    else {
        ListNode *p;
        p = head1;
        while (p->link != NULL)
            p = p->link;
        p->link = head2;
        return head1;
    }
}
// Å×½ºÆ® ÇÁ·Î±×·¥
int main(void)
{
    ListNode* head1 = NULL;
    ListNode* head2 = NULL;
 
    head1 = insert_first(head1, 10);
    head1 = insert_first(head1, 20);
    head1 = insert_first(head1, 30);
    print_list(head1);
 
    head2 = insert_first(head2, 40);
    head2 = insert_first(head2, 50);
    print_list(head2);
 
    ListNode *total = concat_list(head1, head2);
    print_list(total);
    return 0;
}
cs