(x,y) 根据以下规则映射为一个独立的编号 index

    1. index = x * m + y;
    2. (x, y) = (index / m, index % m);

    其中m表示有多少列