汉诺塔 从任意状态移动M步后的状态

#include <stdio.h> #include <algorithm> #include <vector> using namespace std; const int N = 64; __int64 step[N] ={0}; void cal_step() { for(int i = 1; i < N; ++i) step[i] = step[i -1] <<
相关文章
相关标签/搜索