Cher journal,
j'ai un petit problème que je ne comprends vraiment pas dans un programme en C.
J'ai les structures de données suivantes :
typedef struct _node {
int value;
struct _node *next;
struct _node *previous;
} node;
typedef node* list;
typedef struct {
int nb_rows;
int nb_columns;
list *matrix;
/* array of linked lists
each list corresponds to a column,
each value of a node in this list
gives the positions of a 1 in this column */
} (…)
Journal Petit problème en C (free)
19
nov.
2003