02 2020 档案

摘要:Coin Change https://leetcode.com/problems/coin change/ You are given coins of different denominations and a total amount of money amount. Write a func 阅读全文
posted @ 2020-02-09 23:38 LLccnnSS
摘要:二叉树的遍历 前序遍历 "Leetcode preorder" 中序遍历 "Leetcode inorder" 后续遍历 "Leetcode postorder" Morris Traversal 前序遍历 递归 时间O(n), 空间O(n) 非递归 时间O(n), 空间O(n) 中序遍历 递归 非 阅读全文
posted @ 2020-02-02 15:06 LLccnnSS 阅读(96) 评论(0) 推荐(0)