# rubik_cube **Repository Path**: nanokadesu/rubik_cube ## Basic Information - **Project Name**: rubik_cube - **Description**: 算法设计 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-15 - **Last Updated**: 2024-11-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: BFS ## README # rubik_cube #### 最终结果 ##### 1.231s - main 分支 ##### 0.126s - NoAssert 分支 #### 存储结构 ![image](./imgs/storage.jpg) #### 算法设计 ![image](./imgs/aogorithm.jpg) # 使用教程 #### 介绍 算法设计:二阶魔方程序 #### Cmake + MinGW-Make使用说明 Cmake 命令示例 ``` cd build cmake -G "MinGW Makefiles" .. make ./bin/main.exe ``` Git 命令示例 ``` git init git add remote origin git pull --rebase origin master # 这边修改好文件之后 git add * git commit -am"xxx" # xxx 是你要添加的注释 git branch -M yyy # yyy 是你要新添加的分支 git push -u nanoka yyy ```