-
Notifications
You must be signed in to change notification settings - Fork 0
/
no.c
160 lines (128 loc) · 2.93 KB
/
no.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*!
*\file
*\brief Arquivo contendo a implementação das funções da biblioteca no.
*\author Vinicius Botelho Souza
*\date Jul 2016
*\version 1.3
*/
//LISTA_ENC
/*!
*\struct nos
*\brief Estrutura dos nós.
*/
#include <stdio.h>
#include <stdlib.h>
#include "no.h"
#include "escalonador.h"
struct nos{
void* dados;
no_t *proximo;
no_t *anterior;
};
// Cria um novo no
no_t *criaNo(void *dado)
{
no_t *p = malloc(sizeof(no_t));
if (p == NULL){
perror("cria_no:");
exit(EXIT_FAILURE);
}
p->dados = dado;
p->proximo = NULL;
p->anterior = NULL;
return p;
}
void ligaNo (no_t *fonte, no_t *destino)
{
if (fonte == NULL || destino == NULL){
fprintf(stderr,"liga_nos: ponteiros invalidos");
exit(EXIT_FAILURE);
}
fonte->proximo = destino;
destino->anterior = fonte;
}
void desligaNo (no_t *no)
{
if (no == NULL) {
fprintf(stderr,"desliga_no: ponteiros invalidos");
exit(EXIT_FAILURE);
}
no->proximo = NULL;
no->anterior = NULL;
}
no_t *obtemProximo (no_t *no)
{
if (no == NULL) {
fprintf(stderr,"obtem_proximo: ponteiros invalidos");
exit(EXIT_FAILURE);
}
return no->proximo;
}
no_t *obtemAnterior (no_t *no){
if (no == NULL) {
fprintf(stderr,"obtem_proximo: ponteiros invalidos");
exit(EXIT_FAILURE);
}
return no->anterior;
}
void *obtemDado (no_t *no)
{
if (no == NULL) {
fprintf(stderr,"obtem_dado: ponteiros invalidos");
exit(EXIT_FAILURE);
}
return no->dados;
}
void liberaNo(no_t *no){
if (no != NULL) {
no_t *temp;
while(no){
temp = obtemProximo(no);
free((task_t*)obtemDado(no));
free(no);
no = temp;
}
}
}
void swap_nos(no_t *fonte,no_t *destino){
if (fonte == NULL || destino == NULL){
fprintf(stderr,"swap_nos: ponteiros invalidos");
exit(EXIT_FAILURE);
}
no_t *fonte_anterior = fonte->anterior;
no_t *destino_proximo = destino->proximo;
if (fonte_anterior == NULL)
destino->anterior = NULL;
else
ligaNo(fonte_anterior, destino);
if (destino_proximo == NULL)
fonte->proximo = NULL;
else
ligaNo(fonte, destino_proximo);
ligaNo(destino, fonte);
}
void desligaProximo(no_t *no){
if (no == NULL) {
fprintf(stderr,"desliga_proximo: ponteiros invalidos");
exit(EXIT_FAILURE);
}
no->proximo = NULL;
}
void desligaAnterior(no_t *no){
if (no == NULL) {
fprintf(stderr,"desliga_anterior: ponteiros invalidos");
exit(EXIT_FAILURE);
}
no->anterior = NULL;
}
no_t *copiaNo(no_t *no){
if (no == NULL) {
fprintf(stderr,"copiaNo: Ponteiros invalídos");
exit(EXIT_FAILURE);
}
no_t* noCopiado;
noCopiado = criaNo(obtemDado(no));
noCopiado->anterior = no->anterior;
noCopiado->proximo = no->proximo;
return noCopiado;
}