码迷,mamicode.com
首页 > 2014年11月11日 > 全部分享
PuTTY连接Linux服务器经常断线解决方案
PuTTY在远程连接服务器之后,经常会断线提示“Software caused connection abort”,而且经常在很短的时间内就失去连接。 解决方案如下: 第一步:设置服务器 1、修改服务器中/etc/ssh/sshd.config 文件,将LoginGraceTime的值设为0,TCPKeepAlive 设为yes 2、service sshd restart 重启s...
分类:系统相关   时间:2014-11-11 22:57:17    阅读次数:557
Android倒计时功能的实现(CountDownTimer)
以前编程的时候,遇到倒计时的功能时,经常自己去写,但其实Android已经帮封装好了一个倒计时类CountDownTimer,其实是将后台线程的创建和Handler队列封装成为了一个方便的类调用。 说明: CountDownTimer timer = new CountDownTimer(30000, 1000)中,第一个参数表示总时间,第二个参数表示间隔时间。 意思就是每隔一秒会回调一...
分类:移动开发   时间:2014-11-11 22:56:19    阅读次数:207
android PopupWindow demo
public class PopupwindowActivity extends Activity { LinearLayout ll;     @Override     public void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setCon...
分类:移动开发   时间:2014-11-11 22:57:37    阅读次数:221
android 创建快捷图标demo
public class DemoActivity extends Activity {     /** Called when the activity is first created. */     @Override     public void onCreate(Bundle savedInstanceState) {         super.onCreate(savedI...
分类:移动开发   时间:2014-11-11 22:57:34    阅读次数:243
Tree
You are to determine the value of the leaf node in a given binary tree that is the terminal node of a path of least value from the root of the binary tree to any leaf. The value of a path is the sum o...
分类:其他好文   时间:2014-11-11 22:57:13    阅读次数:280
会场安排问题
题目来源:NYOJ 会场安排问题 时间限制:3000 ms  |  内存限制:65535 KB 难度:4 描述学校的小礼堂每天都会有许多活动,有时间这些活动的计划时间会发生冲突,需要选择出一些活动进行举办。小刘的工作就是安排学校小礼堂的活动,每个时间最多安排一个活动。现在小刘有一些活动计划的时间表,他想尽可能的安排更多的活动,请问他该如何安排。 输入第一行...
分类:其他好文   时间:2014-11-11 22:56:45    阅读次数:182
uva 12186
A couple of years ago, a new world wide crisis started, leaving many people with economical problems. Some workers of a particular company are trying to ask for an increase in their salaries. The c...
分类:其他好文   时间:2014-11-11 22:56:24    阅读次数:285
Trees on the level
Background Trees are fundamental in many branches of computer science. Current state-of-the art parallel computers such as Thinking Machines' CM-5 are based on fat trees. Quad- and octal-trees are f...
分类:其他好文   时间:2014-11-11 22:56:41    阅读次数:239
POJ 3190 Stall Reservations-奶牛分栏(区间贪心,优先队列)
贪心算法证明与实例(POJ3190),区间贪心,优先队列...
分类:其他好文   时间:2014-11-11 22:56:13    阅读次数:226
设计模式之——单例模式
设计模式之——单例模式。(希望对你有所帮助,谢谢。)...
分类:其他好文   时间:2014-11-11 22:56:03    阅读次数:194
ExtJs--07--Ext.define定义一个类的过程
ExtJs--07--Ext.define定义一个类的过程...
分类:Web程序   时间:2014-11-11 22:55:41    阅读次数:177
MD5压缩算法心得
MD5算法的全称是Message Digest Algorithm(消息摘要算法第五版),是计算机安全领域广泛使用的一个压缩加密的哈希算法,主要提供消息完整化。知道这个算法可以压缩加密就可以了。 算法的主要思想就是:讲输入的信息分割成许多分组(长度为L),每个分组有512位(注意是位,MD5中是以位操作的)。然后又将每个分组划分为16个分组,每个分组有32组,经过一些处理后,输出一个128位的散列值。...
分类:编程语言   时间:2014-11-11 22:55:52    阅读次数:276
BZOJ 1861 ZJOI 2006 Book 书架 Splay
题目大意:有一个书架,现在需要经常改变这些书的位置,每次询问一本书在哪或者第几本书是什么。 思路:赤裸裸的Splay,只是有些小事需要注意。因为他有的时候问你一个书在哪,这个事情不能只在Splay中就能解决,我们需要辅助他解决。注意到操作中没有加入书的操作,也就是书的总数并不会变化,而且Splay的过程中只是指针的变动,所以不会有点发生变化,所以在一开始建树的时候维护一个数组,表示这本书...
分类:其他好文   时间:2014-11-11 22:54:52    阅读次数:241
4 Values whose Sum is 0
Description The SUM problem can be formulated as follows: given four lists A, B, C, D of integer values, compute how many quadruplet (a, b, c, d ) AxBxCxD are such that a + b + c + d = 0 . In...
分类:其他好文   时间:2014-11-11 22:55:20    阅读次数:173
Java编程:向枚举添加自定义属性(用for-each循环来打印每种苹果的名称和价格)
package 枚举; //向枚举添加自定义属性 enum Apple { AURORA(10),BELMAC(12),CORTLAND(15),EMPIRE(8),GRAVENSTEIN(11); private int price; //构造方法 Apple(int price) { this.price = price; } int getPrice()...
分类:移动开发   时间:2014-11-11 22:53:48    阅读次数:247
LeeCode---Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:其他好文   时间:2014-11-11 22:56:05    阅读次数:218
教你怎么去一个APP的JSON数据,你懂的
教你怎么去一个APP的网络数据,最重要的是,我们可以拿到我们想要的json数据,还在等什么,软件都给你准备好了...
分类:移动开发   时间:2014-11-11 22:52:47    阅读次数:211
2001条   上一页 1 2 3 4 5 6 7 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!