Given a collection of number segments, you are supposed to recover the smallest number from them. For example, given { 32, 321, 3214, 0229, 87 }, we c ...
分类:
其他好文 时间:
2019-07-10 20:07:01
阅读次数:
102
1038 Recover the Smallest Number (30 分) 1038 Recover the Smallest Number (30 分) 1038 Recover the Smallest Number (30 分) Given a collection of number s ...
分类:
其他好文 时间:
2019-07-08 16:31:43
阅读次数:
73
原题链接在这里:https://leetcode.com/problems/smallest-subtree-with-all-the-deepest-nodes/ 题目: Given a binary tree rooted at root, the depth of each node is t ...
分类:
其他好文 时间:
2019-07-08 13:58:55
阅读次数:
127
Write a function: def solution(A) that, given an array A of N integers, returns the smallest positive integer (greater than 0) that does not occur in ...
分类:
编程语言 时间:
2019-07-08 10:41:54
阅读次数:
338
原题链接在这里:https://leetcode.com/problems/maximum-difference-between-node-and-ancestor/ 题目: Given the root of a binary tree, find the maximum value V for ...
分类:
其他好文 时间:
2019-07-07 09:48:28
阅读次数:
124
Resolution - Using any of the available measurements (range, bearing, elevation, or Doppler) can I determine that there are multiple objects being det ...
分类:
其他好文 时间:
2019-07-04 14:31:46
阅读次数:
117
1.Please compare NRU, NFU, WS, CLOCK with LRU and write down the difference.答:①最近未使用页面置换算法(NRU)算法 找到最久没有使用的页面置换出去,页面被访问时设置R位,修改时设置M位,R位定期清0; 把页面分四类 0类 ...
分类:
其他好文 时间:
2019-06-30 09:48:59
阅读次数:
85
1.What is the difference between fork and exec? please use programs to prove your opinion.答:Fork是创建一个新的进程(把进程原样复制一个新的出来),新进程和老进程相同只有进程号不同。但是exec用参数指定的 ...
分类:
编程语言 时间:
2019-06-30 09:23:08
阅读次数:
138
一、前缀和(基础) 前提:给一个长度为n的数列,m次询问,问[L,R]区间内数列各项和 所以,前缀和就是前面i个数的总和,所求区间和即为a[R]-a[L-1] 二、差分(基础) 前提:给一个长度为n的数列,对[L,R]区间加上或减去某个值,最后问[L,R]区间内数列各项和 三、二维前缀和 前提:给定 ...
分类:
其他好文 时间:
2019-06-29 00:54:06
阅读次数:
95
radis持久化的几种方式 1、前言 Redis是一种高级key-value数据库。它跟memcached类似,不过数据可以持久化,而且支持的数据类型很丰富。有字符串,链表,集 合和有序集合。支持在服务器端计算集合的并,交和补集(difference)等,还支持多种排序功能。所以Redis也可以被看 ...
分类:
其他好文 时间:
2019-06-27 11:07:05
阅读次数:
104