This repository has been archived by the owner on Jun 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbankir.h
80 lines (63 loc) · 1.43 KB
/
bankir.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
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
#ifndef BANKIR_HEADER_INCLUDED
#define BANKIR_HEADER_INCLUDED
#include <iostream>
#include <vector>
using namespace std;
#define Nil NULL
#define first(L) L.first
#define last(L) L.last
#define next(P) P->next
#define prev(P) P->prev
#define info(P) P->info
#define found(P) P != Nil
#define single(L) not (found (next(first(L))))
/*! Customer */
struct infoTypeCustomer {
unsigned long int id;
unsigned int age;
string name;
};
typedef struct elmListCustomer *addrCustomer;
struct elmListCustomer {
infoTypeCustomer info;
addrCustomer next;
addrCustomer prev;
};
struct customerList {
addrCustomer first;
addrCustomer last;
};
/*! Account */
struct infoTypeAccount {
unsigned long int id, balance;
vector <unsigned long int> cid;
};
typedef struct elmListAccount *addrAccount;
struct elmListAccount {
infoTypeAccount info;
addrAccount next;
addrAccount prev;
};
struct accountList {
addrAccount first;
addrAccount last;
};
/*! List */
#define account(P) info(P).account
#define customer(P) info(P).customer
struct infotype {
unsigned long int id;
addrCustomer customer;
vector <addrAccount> account;
};
typedef struct elmList *address;
struct elmList {
infotype info;
address next;
address prev;
};
struct List {
address first;
address last;
};
#endif