链接:https://leetcode.com/tag/recursion/ 247 Strobogrammatic Number II (2019年2月22日,谷歌tag) 给了一个 n,给出长度为 n 的所有上下颠倒 180度以后都看起来一样的数字字符串. 题解:dfs,回溯.注意所有的能有pair的序列是 0, 1, 8, 6, 9 class Solution { public: vector<string> findStrobogrammatic(int n) { vector<…