0
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?

Avci030
  • 41
  • 4

0 Answers0