Merge sort is a recursive sorting algorithm. If you don't understand recursion, I recommend finding a resource to learn it. In brief, recursion is the ...
分类:
编程语言 时间:
2018-12-22 11:43:34
阅读次数:
161
pt-online-schema-changept-online-schema-change--nocheck-replication-filters--recursion-method=none--charset=utf8--max-lag=10--critical-load="Threads_running:100"--alter"modifycolumnemp_novarchar(100)"
分类:
其他好文 时间:
2018-12-15 12:08:36
阅读次数:
183
一起过来排好队,进来挨打 1.Leetcode tag LinkList "109.convert sorted list to binary search tree" ...
分类:
其他好文 时间:
2018-12-09 18:48:38
阅读次数:
215
665. Non-decreasing Array Input: [4,2,3] Output: True Explanation: You could modify the first 4 to 1 to get a non-decreasing array.递增 思路:贪心思想,找异常值,存在两 ...
分类:
其他好文 时间:
2018-12-06 12:07:50
阅读次数:
232
FTP 文件传输协议 什么是FTP? FTP全称是文件传输协议,简单点就是通过这个协议我们可以实现文件的传输。 FTP软件一般分为服务端和客服端。 常用的FTP软件 pureFTP 编译安装FTP 进入官网下载 https://www.pureftpd.org/ \2. 使用wget 下载命令进行下 ...
分类:
其他好文 时间:
2018-12-03 01:06:54
阅读次数:
237
树结构问题因为容易写出解法,因此经常出现在面试题中 1. 树的种类 1) Tree 2) Binary Trees 3) Binary Search Trees(BST) : used to sorted or ordered data. //解决方案:recursion 查找操作(fast and ...
分类:
其他好文 时间:
2018-12-01 18:40:43
阅读次数:
191
参照地址: https://blog.csdn.net/pzlsun/article/details/52497839 http://blog.51cto.com/12227558/2060262 https://www.linuxidc.com/Linux/2017-07/145879.htm [... ...
分类:
其他好文 时间:
2018-11-24 15:15:16
阅读次数:
133
"Top-down" Solution Here is the pseudocode for the recursion function maximum_depth(root, depth): 1. return if root is null 2. if root is a leaf node: ...
分类:
其他好文 时间:
2018-11-21 19:35:40
阅读次数:
115
from multiprocessing import Pool import gevent,os import time def recursion(n): if n == 1 or n ==2: return 1 else: return recursion(n-1)+recursion(n-2... ...
分类:
系统相关 时间:
2018-11-20 13:26:48
阅读次数:
217