题目地址
LeetCode#386 Lexicographical Numbers
题目描述
Given an integer n, return 1 - n in lexicographical order.
For example, given 13, return: [1,10,11,12,13,2,3,4,5,6,7,8,9].
Please optimize your algorithm to use less time and space. The input size may be as large as 5,000,000.
解题思路
要求按照字典顺序对从 0-n 的数字进行排序,我试了一下先生成数字然后用 sort()
但是直接 TEL 了,所以只能在生成数字的时候就有序。那么就直接递归进行生成数字。
解题代码
1 | class Solution { |