统计字符出现次数并排序class Hist(dict):
def add(self, item, increment=1):
"""increase num"""
self[item] = increment + self.get(item, 0) def counts(self, reverse=False):
"""return"""...
分类:
编程语言 时间:
2015-05-18 12:58:07
阅读次数:
148
Problem Description
Five hundred years later, the number of dragon balls will increase unexpectedly, so it's too difficult for Monkey King(WuKong) to gather all of the dragon balls together.
...
分类:
其他好文 时间:
2015-05-11 14:53:46
阅读次数:
130
The process to add 4G swap on your original swap:1.Create a 4G swap file$ size="4G" && sudo fallocate -l $size /$size-swap && sudo mkswap /$size-swap ...
分类:
系统相关 时间:
2015-05-08 23:35:53
阅读次数:
151
优先队列是堆排序的一个具体应用。
优先队列分为如下几个操作:
1.INSERT(S,x)把元素x插入到优先队列中。
2.MAXIMUM(S):返回s中具有最大关键字的元素。
3.EXTRACT_MAX(S):去掉S中最大关键字的元素
4.INCREASE_KEY(S,x,k):将元素x的关键字值增加到k,k是不小于x的元素。
优先队列的应用:
1.共享计算机系统的作业调度。最大优先队...
分类:
编程语言 时间:
2015-05-04 10:05:49
阅读次数:
187
Introduction to Random forest(Simplified)With increase in computational power, we can now choose algorithms which perform very intensive calculations....
分类:
其他好文 时间:
2015-04-28 17:39:58
阅读次数:
367
Greg has an array a?=?a1,?a2,?…,?an and m operations. Each operation looks as: li, ri, di, (1?≤?li?≤?ri?≤?n). To apply operation i to the array means to increase all array elements with numbers li,?li...
分类:
其他好文 时间:
2015-04-27 09:55:03
阅读次数:
143
WARNING: [pool www] seems busy (you may need to increase pm.start_servers, or pm.min/max_spare_servers), spawning...
分类:
Web程序 时间:
2015-04-13 16:47:23
阅读次数:
152
今天在给nginx添加几十个域名后,重启nginx的时候,报错”[emerg]:couldnotbuildtheserver_names_hash,youshouldincreaseeitherserver_names_hash_max_size:512orserver_names_hash_bucket_size:128″在nginx.conf配置文件的http{}把server_names_hash_bucket_size128改为serve..
分类:
其他好文 时间:
2015-03-19 18:40:42
阅读次数:
124
优先队列(priority queue)是一种用来维护由一组元素构成的集合S的数据结构,其中的每一个元素都有一个相关的值,称为关键字(key)。一个最大优先队列支持一下操作:
INSERT(S, x):把元素x插入集合S中。
MAXIMUM(S):返回S中具有最大关键字的集合。
EXTRACT-MAX(S):去掉并返回S中的具有最大关键字的元素。
INCREASE-KEY(...
分类:
编程语言 时间:
2015-03-17 21:52:58
阅读次数:
211
编写线程安全需要关心的:
共享的变量
可变的变量
共享意味着多个线程可以同时访问,可变意味着其值在生命周期可以改变。
例如以下count 变量:
//线程不安全的类public class UnsafeCount { private int count = 0; //该变量是共享的 public void increase() { ...
分类:
编程语言 时间:
2015-03-12 11:40:46
阅读次数:
227