2019年4月12日

leetcode_1011. Capacity To Ship Packages Within D Days_binary search二分

摘要: https://leetcode.com/problems/capacity-to-ship-packages-within-d-days/ 传送带每天有最大传送量V,对于n个货物[w1,w2,w3...wn],要在D天内将所有货物传送完的V最小为多少? 二分每天最大传送量V,初始:Vhigh = 阅读全文

posted @ 2019-04-12 15:00 JASONlee3 阅读(113) 评论(0) 推荐(0) 编辑

leetcode_684. Redundant Connection

摘要: https://leetcode.com/problems/redundant-connection/ 一个无向图,n个顶点有n条边,输出一条可以删除的边,删除后使得图成为一棵树。可以使用并查集解决。 阅读全文

posted @ 2019-04-12 14:17 JASONlee3 阅读(96) 评论(0) 推荐(0) 编辑

leetcode_650. 2 Keys Keyboard_dp

摘要: https://leetcode.com/problems/2-keys-keyboard/ 初始一个A,两种操作,复制当前所有A,粘贴,问得到n个A最少需要多少步操作。 阅读全文

posted @ 2019-04-12 14:11 JASONlee3 阅读(95) 评论(0) 推荐(0) 编辑

leetcode_655. Print Binary Tree

摘要: https://leetcode.com/problems/print-binary-tree/ 打印整棵二叉树 阅读全文

posted @ 2019-04-12 11:30 JASONlee3 阅读(148) 评论(0) 推荐(0) 编辑

导航