Heres a simple question, I'm implementing suffix array but I'm stuck here:
#define SIZE 150
struct node{
transition *next[SIZE]; //error here
};
struct transition{
int left, right;
node *suffix_link;
};
This code won't compile, there's an error in the third line, can anyone help me plz? thanks :D
UPDATE: My bad I forgot to include the first line, sorry it's my first question here :P