-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTubes.h
53 lines (39 loc) · 1.24 KB
/
Tubes.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
45
46
47
48
49
50
51
52
53
#ifndef TUBES_H_INCLUDED
#define TUBES_H_INCLUDED
#define info(p) (p)->info
#define next(p) (p)->next
#define nextLagu(p) (p)->nextLagu
#define first(list_penyanyi) ((list_penyanyi).first)
#define nil NULL
typedef struct elm_penyanyi *adr_penyanyi;
typedef struct elm_lagu *adr_lagu;
struct lagu{
string judul;
int jmlPendengar;
float rating;
};
struct elm_penyanyi{
string info;
adr_penyanyi next;
adr_lagu nextLagu;
};
struct elm_lagu{
lagu info;
adr_lagu next;
};
struct mll{
adr_penyanyi first;
adr_penyanyi last;
};
void create_list(mll &list_penyanyi);
void newElm_penyanyi(string penyanyi, adr_penyanyi &P);
void newElm_lagu(string judul, string jmlPendengar, float rating, adr_lagu &L);
void insertNew_Penyanyi(mll &list_penyanyi, adr_penyanyi P);
void insertNew_Lagu(mll &list_penyanyi, adr_penyanyi P, adr_lagu L);
void delete_penyanyi(mll &list_penyanyi, adr_penyanyi &P);
void delete_lagu(mll &list_penyanyi, adr_penyanyi P, adr_lagu &L);
void show_penyanyi(mll list_penyanyi);
void show_lagu(mll list_penyanyi, adr_penyanyi P);
void find_penyanyi(mll list_penyanyi);
void find_lagu(mll list_penyanyi, adr_penyanyi P);
#endif // TUBES_H_INCLUDED