leetCode刷題筆記 2017 02 07

2021-07-26 16:41:07 字數 1189 閱讀 1497

34. search for a range

這道題完全可以用遞迴做。主要還是二分法思想,尋找等於target的最靠邊的乙個位置。。。

public class solution

private int getboundrange(int nums, int first, int last, int target, boolean left)

int mid = (last + first) / 2;

if (nums[mid] == target)

else

}else

else }}

else if (nums[mid] > target) else  

}35. search insert position

這個簡單,之間用迴圈弄出來。target大於mid, first變成mid+1,target小於mid,last變成mid -1.

public class solution

if (nums[last] == target)

while (first <= last)

else if (nums[mid] < target)

else

}return first;}}

39. combination sum

這道題用遞迴做比較方便。裡面的解法不錯。。。

每次都減去陣列中的乙個數,如果得到的值不為零,則要進入遞迴,如果為零,那麼就退出遞迴返回list

40. combination sum ii

也是用遞迴,這個和前面差不多,但是由於不能重複,所以要從i+1開始遞迴

public class solution

// sort

arrays.sort(candidates);

combinehelper(result, item, candidates, target, 0, 0);

return result;

}public void combinehelper(list> list, listitem, int candidates, int target, int sum, int start)  

if (sum>target)  

for (int i = start; i < candidates.length; i++)  }}

LeetCode刷題實戰201 數字範圍按位與

given a range m,n where 0 m n 2147483647,return the bitwise and of all numbers in this range,inclusive.給定範圍 m,n 其中 0 m n 2147483647,返回此範圍內所有數字的按位與 包含 ...

Leetcode刷題筆記

1.兩數之和給定乙個整數陣列nums 和乙個目標值target,請你在該陣列中找出和為目標值的那兩個整數,並返回他們的陣列下標。ps 你可以假設每種輸入只會對應乙個答案。但是,你不能重複利用這個陣列中同樣的元素。思路 用target減去nums中的每乙個數,並設立乙個字典來記錄對應的下標 class...

LeetCode刷題筆記

實現strstr 給定乙個 haystack 字串和乙個 needle 字串,在 haystack 字串中找出 needle 字串出現的第乙個位置 從0開始 如果不存在,則返回 1。示例 1 輸入 haystack hello needle ll 輸出 2 示例 2 輸入 haystack aaaa...