摘要:
正常实现 Input : [1,2,3,4,5] key : 3 return the index : 2 public int binarySearch(int[] nums, int key) { int l = 0, h = nums.length - 1; while (l <= h) { 阅读全文
摘要:
保证每次操作都是局部最优的,并且最后得到的结果是全局最优的。 1. 分配饼干 455. Assign Cookies (Easy) class Solution { public int findContentChildren(int[] g, int[] s) { if(g.length == 0 阅读全文