32 lines
259 B
C
32 lines
259 B
C
#ifndef ROUTING4SITA_H
|
|
#define ROUTING4SITA_H
|
|
|
|
|
|
#define MAX_CHILDREN 3
|
|
|
|
|
|
typedef struct node NODE_t;
|
|
|
|
struct node {
|
|
int id;
|
|
int nodescount;
|
|
NODE_t* nodesnext[MAX_CHILDREN];
|
|
int nodescost[MAX_CHILDREN];
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* ROUTING4SITA_H */
|