上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 84 下一页
摘要: 转 http://www.cnblogs.com/bangerlee/archive/2012/02/20/2356818.html引言“Oops,系统挂死了..."“Oops,程序崩溃了..."“Oops,命令执行报错..."对于维护人员来说,这样的悲剧每天都在上演。理想情况下,系统或应用程序的错... 阅读全文
posted @ 2015-06-08 17:30 穆穆兔兔 阅读(308) 评论(0) 推荐(0) 编辑
摘要: Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Return all such possibl... 阅读全文
posted @ 2015-06-08 14:52 穆穆兔兔 阅读(391) 评论(0) 推荐(0) 编辑
摘要: gdb x/24b &bgdb p/x &b 阅读全文
posted @ 2015-06-05 17:35 穆穆兔兔 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 基于http://www.cnblogs.com/diegodu/p/4555018.html operator new的知识基础上 介绍这个章节的内容对于一般直接 new 与delete 性能较差,可以自己管理写内存的申请与释放。其实一般的operator new 和operator delete... 阅读全文
posted @ 2015-06-05 17:07 穆穆兔兔 阅读(394) 评论(0) 推荐(0) 编辑
摘要: http://www.younfor.com/cpp-new-placement-new-operator-new.htmlhttp://www.cnblogs.com/luxiaoxun/archive/2012/08/10/2631812.htmlhttp://kelvinh.github.io... 阅读全文
posted @ 2015-06-05 16:44 穆穆兔兔 阅读(522) 评论(0) 推荐(0) 编辑
摘要: Clone an undirected graph. Each node in the graph contains alabeland a list of itsneighbors.OJ's undirected graph serialization:Nodes are labeled uniq... 阅读全文
posted @ 2015-06-05 11:22 穆穆兔兔 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 内存管理模块是操作系统的心脏;它对应用程序和系统管理非常重要。今后的几篇文章中,我将着眼于实际的内存问题,但也不避讳其中的技术内幕。由于不少概念是通用的,所以文中大部分例子取自32位x86平台的Linux和Windows系统。本系列第一篇文章讲述应用程序的内存布局。在多任务操作系统中的每一个进程都运... 阅读全文
posted @ 2015-06-04 17:39 穆穆兔兔 阅读(9125) 评论(1) 推荐(1) 编辑
摘要: 转http://coolshell.cn/articles/11609.html滑动窗口 -- 表征发送端和接收端的接收能力拥塞窗口-- 表征中间设备的传输能力TCP滑动窗口需要说明一下,如果你不了解TCP的滑动窗口这个事,你等于不了解TCP协议。我们都知道,TCP必需要解决的可靠传输以及包乱序(r... 阅读全文
posted @ 2015-05-29 16:45 穆穆兔兔 阅读(12844) 评论(0) 推荐(1) 编辑
摘要: 转陶辉 taohui.org.cn在上一篇中,我们已经建立好的TCP连接,对应着操作系统分配的1个套接字。操作TCP协议发送数据时,面对的是数据流。通常调用诸如send或者write方法来发送数据到另一台主机,那么,调用这样的方法时,在操作系统内核中发生了什么事情呢?我们带着以下3个问题来细细分析:... 阅读全文
posted @ 2015-05-29 16:17 穆穆兔兔 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 转 http://taohui.org.cn/tcpperf1.html 陶辉 taohui.org.cn回到应用层,往往只需要调用类似于accept的API就可以建立TCP连接。建立连接的流程大家都了解--三次握手,它如何与accept交互呢?下面以一个不太精确却通俗易懂的图来说明之:研究过bac... 阅读全文
posted @ 2015-05-29 15:11 穆穆兔兔 阅读(718) 评论(0) 推荐(0) 编辑
上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 84 下一页