题解 | #汉诺塔问题#

汉诺塔问题

https://www.nowcoder.com/practice/7d6cab7d435048c4b05251bf44e9f185

#include <unordered_map>
#include <vector>
#include <string>
class Solution {
    vector<string> strs;
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param n int整型 
     * @return string字符串vector
     */
    vector<string> getSolution(int n) {
        // write code here
        strs.resize(0);
	  	// 0b100 : left
	  	// 0b010 : mid
	  	// 0b001 : right
        move(n, 0b100, 0b001);
        return strs;
    }

    void move(int n, int from, int to) {
        if(n == 1) {
            move(from, to);
        } else {
		  	// 算出中继位置
            int mid = 0b111 & ~(from | to);
		  	// 将上方n-1个盘子搬往中继位置
            move(n - 1, from, mid);
		  	// 将最底下的盘子搬往目标位置
            move(from, to);
		  	// 将中继位置的n-1个盘子搬往目标位置
            move(n - 1, mid, to);
        }
    }

    void move(int from, int to) {
        static unordered_map<int, string> itos{
            {0b100, string("left")},
            {0b010, string("mid")},
            {0b001, string("right")}
        };
        strs.push_back("move from " + itos[from] + " to " + itos[to]);
    }
};

#递归#
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 18:54
说等下个版本吧的发呆爱好者很贪睡:佬最后去了哪家呀
点赞 评论 收藏
分享
10-07 23:57
已编辑
电子科技大学 Java
八街九陌:博士?客户端?开发?啊?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务