typedef struct Node {
int nodeNumber;
struct Node*pNext;
}Nodes;
typedef struct List {
Nodes row[MAX_SIZE];
}Lists;
How could I implement a structure like the above in java?
typedef struct Node {
int nodeNumber;
struct Node*pNext;
}Nodes;
typedef struct List {
Nodes row[MAX_SIZE];
}Lists;
How could I implement a structure like the above in java?