码迷,mamicode.com
首页 >  
搜索关键字:least    ( 1796个结果
Method of offloading iSCSI TCP/IP processing from a host processing unit, and related iSCSI TCP/IP offload engine
A method of offloading, from a host data processing unit (205), iSCSI TCP/IP processing of data streams coming through at least one TCP/IP connection ...
分类:其他好文   时间:2014-08-04 01:40:36    阅读次数:248
linux 空间不够了,怎么办?Disk Requirements:At least 11MB more space needed on the / filesystem.
Disk Requirements:At least 11MB more space needed on the / filesystem.  linux 空间不够了,怎么办? 1>  查看空间多少:df -h 2>  查看当期内核: uname -r 3>  查找内核   rpm -qa | grep kernel 4>  删除多余的内核 su -c 'yum remove kern...
分类:系统相关   时间:2014-08-03 20:43:25    阅读次数:434
codeforces2B - The least round way DP
题意:给你一个矩阵,问你从左上角走一直走到右下角只能向右向下,问你最后乘起来尾数0个数最少的数值和路径是什么解题思路:可以知道 要么这条路径上和 的质因子 2 的个数 7 #include 8 #include 9 #include 10 #include 11 #include 12 #i...
分类:其他好文   时间:2014-08-02 18:16:43    阅读次数:248
HDU-1664-Different Digits(BFS)
Problem Description Given a positive integer n, your task is to find a positive integer m, which is a multiple of n, and that m contains the least number of different digits when represented in decim...
分类:其他好文   时间:2014-07-30 14:46:03    阅读次数:230
Maximum Subarray leetcode java
题目: Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [?2,1,?3,4,?1...
分类:编程语言   时间:2014-07-30 05:34:43    阅读次数:319
LeetCode: LRU Cache
LeetCode: LRU CacheDesign and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set....
分类:其他好文   时间:2014-07-29 11:43:36    阅读次数:232
并查集(uva10608)
一 基础知识梳理:并查集(Union-find Sets)是一种非常精巧而实用的数据结构,它主要用于处理一些不相交集合的合并问题。一些常见的用途有求连通子图、求最小生成树的 Kruskal 算法和求最近公共祖先(Least Common Ancestors, LCA)等。使用并查集时,首先会存在一组...
分类:其他好文   时间:2014-07-27 22:19:59    阅读次数:323
设计模式六大原则(5)—迪米特法则
定义: 一个对象应该对其它的对象保持最少的了解。迪米特法则又称为最少知识法则,英文全称为Least Knowledge Principle ,简称为LKP。 个人理解: 迪米特法则主要目的是类间解耦,弱耦合。只有类弱耦合了后,类的复用性才会提高。 问题由来: 类之间的关系越密切,类之间的耦合程度越高...
分类:其他好文   时间:2014-07-27 11:04:12    阅读次数:222
LRU Cache leetcode java
题目:Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.get(key) - Get ....
分类:编程语言   时间:2014-07-26 09:53:37    阅读次数:402
LRU 缓冲池 (不考虑多线程)
lru:(转)LRU算法的实现什么是LRU算法? LRU是Least Recently Used的缩写,即最近最少使用页面置换算法,是为虚拟页式存储管理服务的。关于操作系统的内存管理,如何节省利用容量不大的内存为最多的进程提供资源,一直是研究的重要方向。而内存的虚拟存储管理,是现在最通用,最成功的方...
分类:编程语言   时间:2014-07-25 23:55:21    阅读次数:622
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!