摘要:
代码: 1 #include 2 #include 3 4 using namespace std; 5 6 int searchSmallest(int A[], int n, int target){ 7 int l = 0; 8 int r = n - 1; 9 w... 阅读全文
摘要:
我的代码:#include#include#includeusing namespace std;void swap(int &a, int &b){ int t = a; a = b; b = t;}void nextPermutation(vector &num) { i... 阅读全文
摘要:
题目:Divide Two Integers思考方式:刚开始无从下手,tag里的提示是binary search 也就是二分搜索,以前的二分搜索都是知道两端开始向中间靠拢。这里的二分搜索是向右方靠拢, 然后循环的地方在如果越界,就在最后的区间内寻找,可见这种二分搜索的效率是不如那种的。但是这依然是O... 阅读全文