반응형

c언어 연결 리스트 (Linked lists) - 스택 (stack) 구현 - 내림차순 정렬/삽입

 

[C 언어/C언어 기초] - [C언어 #60] 연결 리스트 (Linked lists) - 스택 (stack) 구현

 

스택에 아이템을 추가할 때 내림차순으로 정렬하여 삽입하기

 

main 함수에 조건에 따라 item을 추가(push), 삽입(insert) 하는 addItem 함수 구현

// Main function
int main() {    
    list *stack;
 
    // Create new stack
    stack = newStack();
 
    // Add item onto stack
    addItem(stack3);
    addItem(stack1);
    addItem(stack2);
    addItem(stack4);
 
    // Look at the top item on the stack
    printf("Top item: %d\n", top(stack));
 
    // Print stack items
    print(stack);
 
    while (!isEmpty(stack)) {
        int n = pop(stack);
        printf("Pop item: %d\n", n);
    }
}
 

 

 

조건에 따라 item을 추가(push), 삽입(insert) 하는 addItem 함수 구현

// Add item onto stack
void addItem(list *stackint n) {
    if (isEmpty(stack|| stack->first->item < n) {
        push(stack, n);
    } else {
        insert(stack, findCell(stack->first, n), n);
    }
}
 

 

 

삽입하기 위한 위치를 찾아 내림차순(descending)으로 정렬 하여 item 삽입 함수 구현

// Insert cell in the middle of the stack
void insert(list *stack, cell *c, int n) {
    cell *new = malloc(sizeof(cell));
    *new = (cell) { n, c->next };
    c->next = new;
}
 

 

 

내림차순 정렬을 위하여 cell 위치 찾는 findCell 함수 구현

// Find cell on stack
cell *findCell(cell *first, int n) {
    // Return cell if nothing points to the next cell
    if (first->next == NULLreturn first;
    
    cell *next = first->next;
    int a = next->item;
 
    // Exit program if item exists
    if (a == n) fail("Item exists");
 
    return n < a ? findCell(next, n) : first;
}
 

 

 

 

스택(stack) 내림차순 정렬/삽입 구현

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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* Stack - addItem(Push, Insert), Sort(descend), Print, Pop */
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
 
// Structure for individual items
struct cell {
    int item;
    struct cell *next;
};
 
// Structure for the list as a whole
struct list {
    struct cell *first;
};
 
// typedef for structures
typedef struct cell cell;
typedef struct list list;
 
// Create new stack
list *newStack() {
    list *stack = malloc(sizeof(list));
    stack->first = NULL;
    return stack;
}
 
// Push an item onto a stack
void push(list *stackint n) {
    cell *newCell = malloc(sizeof(cell));
    *newCell = (cell) { n, stack->first };
    stack->first = newCell;
}
 
// Print message and exit program
void fail(char *msg) {
    fprintf(stderr, "%s\n", msg);
    exit(1);
}
 
// Look at the top item of the stack
int top(list *stack) {
    if (stack->first == NULL) fail("Top of empty stack\n");
    return stack->first->item;
}
 
// Check if a stack is empty
bool isEmpty(list *stack) {
    return stack->first == NULL;
}
 
int pop(list *stack) {
    cell *first = stack->first;
    if (first == NULL) fail("Pop from empty stack\n");
    stack->first = first->next;
    int n = first->item;
    free(first);
    return n;
}
 
// Print stack items
void print(list *stack) {
    if (stack->first == NULL) fail("Print empty stack");
    printf("{ ");
    cell *first = stack->first;
    while(first != NULL) {
        printf("%d", first->item);
        if (first->next != NULLprintf(", ");
        first = first->next;
    }
    printf(" }\n");
}
 
// Find cell on stack
cell *findCell(cell *first, int n) {
    // Return cell if nothing points to the next cell
    if (first->next == NULLreturn first;
    
    cell *next = first->next;
    int a = next->item;
 
    // Exit program if item exists
    if (a == n) fail("Item exists");
 
    return n < a ? findCell(next, n) : first;
}
 
// Insert cell in the middle of the stack
void insert(list *stack, cell *c, int n) {
    cell *new = malloc(sizeof(cell));
    *new = (cell) { n, c->next };
    c->next = new;
}
 
// Add item onto stack
void addItem(list *stackint n) {
    if (isEmpty(stack|| stack->first->item < n) {
        push(stack, n);
    } else {
        insert(stack, findCell(stack->first, n), n);
    }
}
 
// Main function
int main() {    
    list *stack;
 
    // Create new stack
    stack = newStack();
 
    // Add item onto stack
    addItem(stack3);
    addItem(stack1);
    addItem(stack2);
    addItem(stack4);
 
    // Look at the top item on the stack
    printf("Top item: %d\n", top(stack));
 
    // Print stack items
    print(stack);
 
    while (!isEmpty(stack)) {
        int n = pop(stack);
        printf("Pop item: %d\n", n);
    }
}

 

 

 

반응형