hello all
i want to know your oppinions about this:
- use a matrix is faster than use a linked list?
example:
char *szColumnName[10];
unsigned short iColumnAge[10];
struct _llList {
struct _llList *prev, *next;
char szName[64];
unsigned short iAge;
};