whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共2篇)
二分查找lower_bound
#include<bits/stdc++.h> using namespace std; int n,x; int main() { while( ~scanf("%d%d",&n,&x) ) { vector<int> s...
二分查找
2021-03-13
0
588
二分查找的改进
本题的调试有点问题。。 一、暴力『不是最优』 class Solution { public: /** * * @param A int整型一维数组 * @param n int A数组长度 * @param target int整型 ...
二分查找
2021-03-11
0
1042