I have a problem with the implementation of double-chained lists, my code is as follows:
#include <stdio.h>
#include <stdlib.h>
struct MoveList
{
int curRow, curCol, newRow, newCol, isEat;
struct MoveList *next, *prev;
};...
asked by
21.07.2016 / 18:13