【例子介绍】解魔方的C#算法源代码
这是一个由C#编写的,能够还原三阶魔方的算法。 其中使用了一些特定的魔方状态表示法,具体的说明请参考博客文章: http://www.diy-robots.com/?p=282
【相关图片】
【源码结构】
文件清单
├── readme.txt
└── RubikSolverSample
├── RubikSolverSample
│ ├── bin
│ │ └── Debug
│ │ ├── RubikSolverLib.dll
│ │ ├── RubikSolverLib.pdb
│ │ ├── RubikSolverSample.exe
│ │ ├── RubikSolverSample.pdb
│ │ ├── RubikSolverSample.vshost.exe
│ │ └── RubikSolverSample.vshost.exe.manifest
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── Debug
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── RubikSolverSample.csproj.FileListAbsolute.txt
│ │ ├── RubikSolverSample.csproj.GenerateResource.Cache
│ │ ├── RubikSolverSample.exe
│ │ ├── RubikSolverSample.Form1.resources
│ │ ├── RubikSolverSample.pdb
│ │ ├── RubikSolverSample.Properties.Resources.resources
│ │ └── TempPE
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RubikSolve.cs
│ └── RubikSolverSample.csproj
├── RubikSolverSample.sln
└── RubikSolverSample.suo
9 directories, 27 files
评论