码迷,mamicode.com
首页 >  
搜索关键字:res    ( 29153个结果
三维DP--POJ1390--Blocks
题意介绍 初看这道题,想了想没头绪,感觉又要被虐了,按照《算法基础》郭老师的讲解,勉强接受了这个奇怪的状态转移方程,但是还是感觉很吃力,照着视频写了一遍之后,又去网上看了看别人的代码,我的天哪,比郭老师的简洁多了!然后自己独立写了一遍,终于感觉好多了。原本感觉无从下手的难题,最后自己能够独立写出来, ...
分类:其他好文   时间:2018-03-03 19:24:08    阅读次数:169
Ceph神坑系列
1. 在使用librbd的过程中,发现一个如果ceph集群异常librbd函数不返回的问题,对librbd的源码进行跟踪,发现了rados接口中的rados_mon_op_timeout(how many seconds to wait for a response from the monitor ...
分类:其他好文   时间:2018-03-03 18:18:19    阅读次数:254
[LeetCode] 22. Generate Parentheses 生成括号
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: " ...
分类:其他好文   时间:2018-03-03 18:09:57    阅读次数:112
『PyTorch』第十一弹_torch.optim优化器
一、简化前馈网络LeNet;二、优化器基本使用方法;三、网络模块参数定制;四、在训练中动态的调整学习率 ...
分类:其他好文   时间:2018-03-03 17:03:43    阅读次数:416
Meeting Her
问题描述 Urpal lives in a big city. He has planned to meet his lover tonight. The city has n junctions numbered from 1 to n. The junctions are connected b ...
分类:其他好文   时间:2018-03-03 16:54:29    阅读次数:163
nginx基本配置与参数说明
user nobody; #启动进程,通常设置成和cpu的数量相等 worker_processes 1; #全局错误日志及PID文件 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error ...
分类:其他好文   时间:2018-03-03 15:22:40    阅读次数:188
11.22 访问日志不记录静态文件 11.23 访问日志切割 11.24 静态元素过期时间
[root@lizhipenglinux01 ~]# /usr/local/apache2.4/bin/apachectl -tSyntax OK[root@lizhipenglinux01 ~]# /usr/local/apache2.4/bin/apachectl graceful jpg的并没 ...
分类:其他好文   时间:2018-03-03 14:07:15    阅读次数:105
js中数组的方法
(参考网友例子) 一 js中不改变原数组的方法: concat:连接多个数组,返回新的数组 join:将数组中所有元素以参数作为分隔符放入一个字符 slice:slice(start,end),返回选定元素 array.slice(start, end) var ary = [1,2,3,4,5]; ...
分类:编程语言   时间:2018-03-03 13:57:09    阅读次数:213
分类管理模块
CategoryManageController: CategoryServiceImpl: Category(这里考虑到set去重,如果set的元素是非基本类型和String,需要以id重写equals和hashcode): CategoryMapper.xml: ...
分类:其他好文   时间:2018-03-03 13:55:23    阅读次数:222
Keeloq的python实现
KeeLoq_NLF = 0x3A5C742E def bit(x,n): x = (((x)>>(n))&1) return x def g5(x,a,b,c,d,e): y = (bit(x,a) + bit(x,b)*2 + bit(x,c)*4 + bit(x,d)*8 + bit(x,e) ...
分类:编程语言   时间:2018-03-03 10:51:26    阅读次数:455
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!