摘要: LC738. 单调递增的数字 用queue容器辅助实现的版本 int monotoneIncreasingDigits(int n) { deque<int> que; int temp = n; while (temp > 0) { que.emplace_front(temp % 10); te 阅读全文
posted @ 2023-03-09 22:54 冥紫将 阅读(22) 评论(0) 推荐(0)