最新 最热

SpringBoot 内嵌tomcat设置解决报错问题

Invalid character found in the request target. The valid characters are defined in RFC****

2022-02-10
1

2022-02-02:最接近的二叉搜索树值 II。 给定一个不为空的二

给定一个不为空的二叉搜索树和一个目标值 target,请在该二叉搜索树中找到最接近目标值 target 的 k 个值。

2022-02-02
0

RTP之静态库

除了共享库,RTP也可以像内核态一样,去使用静态库 - Static Library。

2022-01-24
1

【译文】【第一章③】Mindshare PCI Express Technology 3.0

欢迎参与 《Mindshare PCI Express Technology 3.0 一书的中文翻译计划》

2022-01-19
1

LC 39. 组合总和(回溯)

可以采用回溯 + 剪枝缩短一下时间对于[2, 3, 6 ,7]可以让target减去每个数,然后依次减下去得到0这条路径就是一个答案。

2022-01-13
1

LCP 28. 采购方案(双指针)

如果 nums[left] + nums[right] > target,那么只能左移 right 指针来调整大小,因为 left 指针右移的话,就重新访问了一遍访问过的元素。

2022-01-13
0

Python 系列文章 —— 线程详解

new#创建线程-构造器方式import timeimport threadingdef work(num): print('线程名称:',threading.current_thread().getName(),'参数:',num,'开始时间:',time.strftime('%Y-%m-...

2022-01-13
1

Leetcode 题目解析之 Search Insert Position

Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

2022-01-10
1

Leetcode 题目解析之 Search in Rotated Sorted Array II

Follow up for "Search in Rotated Sorted Array":

2022-01-10
1

Leetcode 题目解析之 Search in Rotated Sorted Array

Suppose a sorted array is rotated at some pivot unknown to you beforehand.

2022-01-10
0