摘要: 题目:给定一个整数 n, 返回从 1 到 n 的字典顺序。 例如, 给定 n =13,返回 [1,10,11,12,13,2,3,4,5,6,7,8,9] 。 题解: class Solution { //递归 vector<int> ans; public: void dfs(int num, i 阅读全文
posted @ 2021-03-31 15:42 USTC丶ZCC 阅读(34) 评论(0) 推荐(0) 编辑