-
Notifications
You must be signed in to change notification settings - Fork 0
/
eliminare.h
44 lines (29 loc) · 1.09 KB
/
eliminare.h
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
#ifndef TRY_TO_DONT_CRY
#define TRY_TO_DONT_CRY
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>
typedef struct double_nod
{
int time_stamp;
double valoareReala;
struct double_nod *next;
struct double_nod *prev;
} double_nod;
double_nod *CreateDoubleList(double_nod *head, int n);
void RemoveExceptions(double_nod *head, int *n);
void free_list(double_nod **head);
void PrintList(double_nod *head);
/* =====================E2=====================*/
double_nod *FiltrareMediana(double_nod *head, int *n);
/* +++++++++++++++++++++++++++++E3++++++++++++++++++++++ */
double_nod *FiltrareAritmetica(double_nod *head, int *n);
/* ============================U========================= */
double_nod *UniformizareFrecvente(double_nod *head, int *n);
/* -------------------------C------------------------- */
double_nod *CompletareDate(double_nod *head, int *n);
/* ============================== st ======================== */
double_nod *statistici(double_nod *head, int *n, int interval);
#endif