-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.c
96 lines (89 loc) · 2.39 KB
/
list.c
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
#include "list.h"
bool isempty()
{
return count?0:1;
}
bool isfull()
{
return (count==MAX_NODES+1)?1:0;
}
void print(node_t* const first)
{
node_t* temp=first;
while (temp!=NULL)
{
printf("priority= %d\t message=%s\n",temp->rate,temp->msg);
temp=temp->next;
}
}
node_t* NewNode(int rate, char* msg)
{
TRY
{
node_t* new_node = (node_t*) malloc(sizeof(node_t));
new_node->msg = malloc(sizeof(msg));
//зрозумів, до 2-го пункту може не дійти
//if (new_node==NULL || new_node->msg==NULL) THROW (BAD_ALLOC);
//спочатку батьківський об'єкт
if (new_node==NULL)THROW (BAD_ALLOC);
if (new_node->msg==NULL) THROW (BAD_ALLOC);
if(strncpy(new_node->msg,msg,strlen(msg)+1)==NULL) THROW (BAD_INPUT);
new_node->rate=rate;
new_node->next=NULL;
++count;
return new_node;
}ETRY;
}
//видалення з початку списку
/*
void beg_del(node_t** head)
{
node_t* ptr=*head;
//переналаштовуємо вказівник на наступний елемент
*head=ptr->next;
free(ptr);
--count;
}
*/
void push(node_t **head_ref, node_t *new_node)
{
node_t* current;
//1-й елемент або якщо 2-й елемент більший за перший
if (*head_ref == NULL || (*head_ref)->rate >= new_node->rate)
{
new_node->next = *head_ref;
*head_ref = new_node;
}
else
{
current = *head_ref;
while (current->next!=NULL &&
current->next->rate < new_node->rate)
{
current = current->next;
}
new_node->next = current->next;
current->next = new_node;
}
printf("List not full %d\n",count);
//логіка по видаленню імплементована
if (isfull())
{
node_t* ptr=*head_ref;
printf("List is full\n");
//переналаштовуємо вказівник на наступний елемент
*head_ref=ptr->next;
free(ptr);
--count;
}
}
//4) memory leak
void free_list(node_t* head)
{
while (head!=NULL)
{
free(head->msg);
free(head);
head=head->next;
}
}