插入排序(Insertion Sort) 插入排序(Insertion-Sort)的算法描述是一种简单直观的排序算法。它的工作原理是通过构建有序序列,对于未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。 3.1 算法描述 一般来说,插入排序都采用in-place在数组上实现。具体算法描述 ...
分类:
其他好文 时间:
2019-08-22 23:44:38
阅读次数:
127
最后一题比赛快结束的时候想到怎么做了(通过WA的数据猜出来的),比赛后10分钟做出来的。最终做了3题,时间1个小时左右吧。 1150. Check If a Number Is Majority Element in a Sorted Array 这道题理论应该用二分,但是数据量很小(1000),所 ...
分类:
其他好文 时间:
2019-08-11 09:11:32
阅读次数:
86
1137. N-th Tribonacci Number 1137. N-th Tribonacci Number The Tribonacci sequence Tn is defined as follows: T0 = 0, T1 = 1, T2 = 1, and Tn+3 = Tn + Tn ...
分类:
其他好文 时间:
2019-07-28 14:08:03
阅读次数:
89
1128. Number of Equivalent Domino Pairs 1128. Number of Equivalent Domino Pairs Given a list of dominoes, dominoes[i] = [a, b] is equivalent to domino ...
分类:
其他好文 时间:
2019-07-28 13:58:48
阅读次数:
102
期数: 58 期 日期:2019-05-31 http://www.ruanyifeng.com/blog/2019/05/weekly-issue-58.html 期数: 59 期 日期:2019-06-07 http://www.ruanyifeng.com/blog/2019/06/weekl ...
分类:
其他好文 时间:
2019-07-24 09:53:56
阅读次数:
109
1103. Distribute Candies to People We distribute some number of candies, to a row of n = num_people people in the following way: We then give 1 candy ...
分类:
其他好文 时间:
2019-07-21 13:48:28
阅读次数:
107
摘要: Cloud Native Weekly China Vol. 2 业界要闻 上游重要进展 Kubernetes 项目 Knative 项目 Istio 项目 containerd 项目 本周云原生最佳实践 传统富容器运维模式如何云原生化? 在很多企业当中长期以来都在使用富容器模式,即:在业务 ...
分类:
其他好文 时间:
2019-04-26 16:35:25
阅读次数:
193
http://www.ruanyifeng.com/blog/2019/02/weekly-issue-44.html 声明:链接及文章内容为原博主阮一峰原创。 ...
分类:
其他好文 时间:
2019-04-17 09:51:14
阅读次数:
139
1021. Remove Outermost Parentheses A valid parentheses string is either empty (""), "(" + A + ")", or A + B, where A and B are valid parentheses strin ...
分类:
其他好文 时间:
2019-04-07 22:24:51
阅读次数:
172
一、相关配置 /var/spool/cron/ 用于存放每个用户包括root的crontab任务,每个任务以创建者的名字命名 /etc/crontab 此文件负责调度各种管理和维护任务。 /etc/cron.d/ 用于存放任何要执行的crontab文件或脚本。 /etc/cron.hourly、/e ...
分类:
其他好文 时间:
2019-04-06 15:32:27
阅读次数:
132