Given a rope with positive integer-length n, how to cut the rope into m integer-length parts with length p[0], p[1], ...,p[m-1], in order to get the m ...
分类:
其他好文 时间:
2020-02-23 09:41:30
阅读次数:
74
搭建spring mvc项目的dao层之后,经常出现这样的错误。一般是由于spring 扫描时候 没有配置具体的目录,或者配置了但是包名不对造成的。但是今天自己出这个问题,找了半天没找到哪里出问题。 最后仔细看配置文件,发现是自己的applicationContext-springmvc.xml一处 ...
分类:
其他好文 时间:
2020-02-21 17:42:11
阅读次数:
71
At most Onece:最多一次,如果算子处理事件失败,事件将不再尝试该事件。 At Least Onece:至少一次,如果算子处理事件失败,算子会再次尝试该处理事件,直到有一次成功。 Exactly Once:严格一次,通常有两种方法实现: 1.分布式快照+状态检查点,思想就是对比检查点和分布 ...
分类:
其他好文 时间:
2020-02-21 14:26:40
阅读次数:
71
1.H-index a researcher at least h paper h score input: T test case N Ai output: thought: 好用的模板: Answer: #include <iostream> #include <algorithm> #incl ...
分类:
其他好文 时间:
2020-02-19 01:18:18
阅读次数:
94
原题链接在这里:https://leetcode.com/problems/dice-roll-simulation/ 题目: A die simulator generates a random number from 1 to 6 for each roll. You introduced a ...
分类:
其他好文 时间:
2020-02-18 14:53:26
阅读次数:
60
Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Inpu ...
分类:
其他好文 时间:
2020-02-17 19:59:09
阅读次数:
80
Background Hugo Heavy is happy. After the breakdown of the Cargolifter project he can now expand business. But he needs a clever man who tells him whe ...
分类:
其他好文 时间:
2020-02-17 01:19:34
阅读次数:
85
我们先来讨论一个经典的链表应用场景,那就是 LRU 缓存淘汰算法。 缓存的大小有限,当缓存被用满时,哪些数据应该被清理出去,哪些数据应该被保留?这就需要缓存淘汰策略来决定。 常见的策略有三种: 先进先出策略 FIFO(First In,First Out)、最少使用策略 LFU(Least Freq ...
分类:
编程语言 时间:
2020-02-15 21:55:56
阅读次数:
71
LCA(least common ancestors)最近公共祖先 指的就是对于一棵有根树,若结点z既是x的祖先,也是y的祖先(不要告诉我你不知道什么是祖先),那么z就是结点x和y的最近公共祖先。 定义到此。 那么怎么求LCA? 对于朴素思想,就是我要一步一步往上爬。。一步一步走。先把结点x和y整到 ...
分类:
其他好文 时间:
2020-02-15 19:20:38
阅读次数:
91
如果在终端执行 make menuconfig ,显示错误:Your display is too small to run Menuconfig!It must be at least 19 lines by 80 columns.make[1]: *** [menuconfig] Error 1 ...
分类:
其他好文 时间:
2020-02-13 14:39:29
阅读次数:
146