How would you represent a Rubik's Cube in code?

前端 未结 11 1634
清酒与你
清酒与你 2020-12-07 09:52

If you were developing software to solve a Rubik\'s Cube, how would you represent the cube?

相关标签:
11条回答
  • 2020-12-07 10:05

    This ACM Paper describes several alternative ways that it has used to represent a rubik's cube and compares them against eachother. Sadly, I don't have an account to get the full text but the description states:

    Seven alternative representations of Rubik's Cube are presented and compared: a 3-by-3-by-3 array of 3-digit integers; a 6-by-3-by-3 array of literals; a 5-by-12 literal matrix; an ll-by-ll sparse literal matrix; a 54-element vector; a 4-dimension array; and a 3-by-3-by-3 nested array. APL functions are given for orientation moves and quarter-turns plus several useful tools for solving the cube.

    Also, this RubiksCube.java file contains a pretty clean representation along with the relevant code for rotating the sections (if you are looking for actual code). It uses a cell and faces array.

    0 讨论(0)
  • 2020-12-07 10:06

    There are 20 cubies that matter. So one way to do it is as an array of 20 strings. The strings would hold 2 or 3 characters indicating the colors. Any single move affects 7 of the cubies. So you just need a remapper for each of the six sides.

    Note: This solution doesn't manage to remember the orientation of the logo sticker that's on the white center.

    By the way, I helped someone do a software Rubik's cube once, maybe 15 years ago, but I can't remember how we represented it.

    0 讨论(0)
  • 2020-12-07 10:08

    As a permutation of the 48 faces which can move. The basic rotations are also permutations, and permutations can be composed, they form a group.

    In a program such a permutation would be represented by an array of 48 elements containing numbers 0 to 47. The colors corresponding to the numbers are fixed, so a visual representation can be computed from the permutation, and vice versa.

    0 讨论(0)
  • There are many ways to do this. Some ways are make more efficient use of memory than others.

    I have seen people use a 3 x 3 x 3 array of cuboid objects, where the cuboid object needs to store color information (and yes, that center object is never used). I have seen people use 6 arrays, each of which is a 3 x 3 array of cuboids. I have seen a 3 x 18 array of cuboids. There are many possibilities.

    Probably a bigger concern is how to represent the various transforms. Rotating a single face of a physical cube (all cube moves are essentially rotations of a single face) would have to be represented by swapping around a lot of cuboid objects.

    Your choice should be one that makes sense for whatever application you are writing. It may be that you are only rendering the cube. It may be that there is no UI. You may be solving the cube.

    I would choose the 3 x 18 array.

    0 讨论(0)
  • 2020-12-07 10:12

    The shortest representation is something like this one: codepen.io/Omelyan/pen/BKmedK

    The cube is unwrapped in 1D array (vector of 54 elements). A few-line rotation function swaps stickers and based on the cube's symmetry. Here's complete working model in C, I made it in 2007 when was a student:

    const byte // symmetry
      M[] = {2,4,3,5},
      I[] = {2,0,4,6};
    
    byte cube[55]; // 0,0,0,0,0,0,0,0,0, 1,1,1,1,1,1,1,1,1, ... need to be filled first
    
    #define m9(f, m) (m6(f, m)*9)
    
    byte m6(byte f, byte m) {return ((f&~1)+M[m+(f&1)*(3-2*m)])%6;}
    
    void swap(byte a, byte b, byte n) {
      while (n--) {byte t=cube[a+n]; cube[a+n]=cube[b+n]; cube[b+n]=t;}
    }
    
    void rotate(byte f, byte a) { // where f is face, and a is number of 90 degree turns
      int c=m9(f, 3), i;
      swap(c, c+8, 1);
      while (a--%4) for (i=2; i>=0; --i)
        swap(m9(f, i) + I[i], m9(f, i+1) + I[i+1], 3),
        swap(f*9+i*2, f*9+i*2+2, 2);
      swap(c, c+8, 1);
    }
    
    0 讨论(0)
  • 2020-12-07 10:13

    One way would be to focus on the visual appearance.

    A cube has six faces and each face is a three-by-three array of squares. So

    Color[][][] rubik = new Color[6][3][3];
    

    Then each move is a method that permutes a specific set of colored squares.

    0 讨论(0)
提交回复
热议问题