自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

chaosllgao的专栏

大漠号令

  • 博客(190)
  • 资源 (1)
  • 收藏
  • 关注

原创 Eclipse安装OpenExplorer插件

Eclipse安装OpenExplorer插件

2016-10-05 23:37:02 1993

转载 Eclipse插件安装方式及使用说明

From: http://www.cnblogs.com/ggjucheng/p/3384753.html拷贝安装方式1、通过ECLIPSE_HOME\plugins安装在eclipse的主目录ECLIPSE_HOME, 比如在我的机器上安装的目录是:ECLIPSE_HOME有一个plugins的目录,这种方法的插件安装非常简单,只要将插件copy到这个目录下就可以

2016-09-30 10:53:46 495

转载 Making an asynchronous WebRequest

From: http://holyhoehle.wordpress.com/2010/01/15/making-an-asynchronous-webrequest/Making an asynchronous WebRequestJanuary 15, 2010 — Steffen HöhleWhen downloading large amounts of data

2014-08-31 15:26:41 720

转载 Linux Shell 1>/dev/null 2>&1 含义

From: http://blog.csdn.net/ithomer/article/details/9288353

2014-05-29 22:12:18 722

转载 Async详解之一:流程控制

From: http://freewind.me/blog/20120515/917.html

2014-05-26 14:58:38 612

原创 wordpress themes site

1. skeletonhttp://www.freethemeforwp.com/themes/skeleton/https://github.com/simplethemes/skeleton_wp2. busbyhttp://wplift.com/busby-free-wordpress-personal-blog-theme

2013-12-06 13:03:27 703

原创 OpenGL notes

1. Enable stencil butter in OpenGL EShttp://stackoverflow.com/questions/2621013/how-to-create-a-fbo-with-stencil-buffer-in-opengl-es-2-0if (m_context && !m_defaultFramebuffer)   {     

2013-09-05 14:35:00 709

转载 使用Xcode和Instruments调试解决iOS内存泄露

From: http://blog.csdn.net/totogo2010/article/details/8233565虽然iOS 5.0版本之后加入了ARC机制,由于相互引用关系比较复杂时,内存泄露还是可能存在。所以了解原理很重要。这里讲述在没有ARC的情况下,如何使用Instruments来查找程序中的内存泄露,以及NSZombieEnabled设置的使用。

2013-07-27 18:13:04 534

转载 How to configure Chrome's Java plugin so it uses an existing JDK in the machine

From: http://stackoverflow.com/questions/5962048/how-to-configure-chromes-java-plugin-so-it-uses-an-existing-jdk-in-the-machineWhen installing JDK in my machines (Windows 7), I

2013-04-29 14:25:44 1387

转载 TCP三次握手协议

From: http://blog.csdn.net/harbinzju/article/details/5789647在TCP/IP协议中,TCP协议提供可靠的连接服务,采用三次握手建立一个连接。 第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认;第二次握手:服务器收到syn包,必须确认客户的SYN(ack=j+1),同

2013-03-04 17:10:27 469

转载 O(n) 求 最长回文子串

From: http://bbs.dlut.edu.cn/bbstcon.php?board=Competition&gid=23474From: http://www.felix021.com/blog/read.php?2040如何在O(n)时间内处理字符串以每个位置为中心的最长回文。这里转载一个Manacher算法的论文翻译。原文地址:http://zhuhongch

2013-02-25 17:15:38 638

转载 C语言名题精选百则——排列,组合与集合

From: http://dsqiu.iteye.com/blog/1715253本篇博文,D.S.Qiu将对《C语言名题精选百则——排列,组合和集合》进行整理推出,不光只是书上的名题,还会依据互联网的资源进行不断补充,加强。等全书各个章节都整理完,会做一个总汇。如果你有建议、批评或补充,请你不吝提出(email:[email protected],或者直接在本文末评论)。你

2013-02-24 18:34:00 1293

转载 优秀的有趣的博客~值得一看

From: http://blog.csdn.net/qiaqia609/article/details/8067771也期待大家能留言推荐其他优秀的博客~技术网站、社区:CSDNITEYEOPEN-OPEN博客园51CTOpudnGoogle codeCode Project、 Sou

2013-02-24 18:31:37 789

转载 Fibonacci数计算中的两个思维盲点及其扩展数列的通用高效解法

From: http://www.cnblogs.com/flyinghearts/archive/2012/02/28/2372530.htmlhttp://www.cppblog.com/flyingheartshttp://www.cnblogs.com/flyingheartshttp://blog.csdn.net/flying

2013-02-17 09:34:13 431

转载 关于最小的k个数的讨论(top-k问题)

From: http://blog.csdn.net/pennyliang/article/details/4642641给定一个长度为n的序列,不妨设为L1,L2,L3,….,Ln。这个序列可以是任意一种排列,可能的排列有n!种,我们要找到最小的k个数,即找到这样的k个数{ Li(1),Li(2),Li(3)…,Li(k)},并满足Li(1)    例如:有这样一个长度为8的序列{1

2013-02-11 22:18:31 423

转载 Creating TreeTables in Swing

From:http://www.comp.nus.edu.sg/~cs3283/ftp/Java/swingConnect/tech_topics/tables_trees_2/tables_trees_2.htmlCreating TreeTables: Part 2Completing the Example ProgramThis article

2013-01-18 13:10:57 977

转载 Linus Torvalds - 从单链表中删除节点

From: http://www.csdn.net/article/2013-01-10/2813559-two-star-programmingFrom: http://wordaligned.org/articles/two-star-programming几周前, Linus Torvalds在Slashdot上回答了一些问题。其中有一条引发了开发者们的强烈关注,当被

2013-01-15 10:20:27 1707

转载 Differences between the C Locale and the C++ Locales

From:http://stdcxx.apache.org/doc/stdlibug/24-3.htmlApache C++ Standard Library User's Guide24.3 Differences between the C Locale and the C++ LocalesAs we have seen so far, the C locale

2012-12-24 11:08:39 722

转载 Why does wide file-stream in C++ narrow written data by default?

From: http://stackoverflow.com/questions/1509277/why-does-wide-file-stream-in-c-narrow-written-data-by-defaultHonestly, I just don't get the following design decision in C++ St

2012-12-24 09:36:43 752

原创 MPlayer 源码阅读笔记

1. m_property.c        val = calloc(1,opt->type->size);        if((r = m_option_parse(opt,opt->name,arg,val,M_CONFIG_FILE))             free(val);            return r;        }        r =

2012-12-19 21:59:55 465

转载 Custom draw vs Owner draw

From: http://www.codeproject.com/KB/miscctrl/CustomDrawCSliderCtrl.aspxhttp://www.codeproject.com/Articles/8985/Customizing-the-Appearance-of-CSliderCtrl-Using-Cu"Custom Draw" is a featu

2012-12-03 21:21:42 573

转载 Why does my OSG MFC based application show memory leaks

From: http://www.vis-sim.com/3dsceneBB/viewtopic.php?t=1027There is a known issue/BUG with MFC, were MFC makes a call to _CrtDumpMemoryLeaks() in the destructor of the _AFX_DEBUG_STATE, followed b

2012-12-02 16:27:37 642

转载 MFC和使用Std的dll之间的内存泄露误报情况

From: http://blog.sina.com.cn/s/blog_4087d260010090sf.html最近搞一个Delta3D的工程,因为牵扯到要放在MFC中,所以费了牛劲才找到放到MFC中的方法,结果还未等高兴,就发现了内部泄漏,泄漏的地方是dtCore.dll,这个DLL是静态关联的DLL,所以我看了看泄漏的具体对象,发现都和std之流相关,于是极度怀疑是st

2012-12-02 16:16:47 1381 1

转载 Exporting classes containing std:: objects (vector, map, etc) from a dll

From: http://www.abstraction.net/ViewArticle.aspx?articleID=83Related readings:http://stackoverflow.com/questions/767579/exporting-classes-containing-std-objects-vector-map-etc-from-a-dllh

2012-11-05 13:52:44 515

转载 跨dll访问STL

From: http://blog.csdn.net/lqk1985/article/details/3136909问题:跨dll,针对Vector引用的传递没有问题,但是Map就出现问题了。原因分析:一句话-----如果任何STL类使用了静态变量(无论是直接还是间接使用),那么就不要再写出跨执行单元访问它的代码。 除非你能够确定两个动态库使用的都是同样的STL实现,比如都

2012-11-04 16:18:28 453

转载 linux exec用法总结

From: http://hi.baidu.com/yzzcheng/item/1dd92815cfe50e5bf1090ef5先总结一个表:exec命令作用exec ls在shell中执行ls,ls结束后不返回原来的shell中了exec 将file中的内容作为exec的标准输入exec >file将file中的内容作为

2012-10-30 15:35:53 721

转载 How To Setup a CA

From: http://pages.cs.wisc.edu/~zmiller/ca-howto/How To Setup a CAOriginal Version by Ian AldermanUpdated by Zach MillerIntroductionYou can set up a Certificate Authority (CA) in multipl

2012-09-29 15:31:21 1398

转载 JavaTM Secure Socket Extension (JSSE) Reference Guide

From: http://docs.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.htmlOracle Technology NetworkSoftware DownloadsDocumentationSearch

2012-09-28 10:21:18 3510

转载 Generating an SSL certificate on Windows without IIS

From: http://luke.breuer.com/time/item/Generating_an_SSL_certificate_on_Windows_without_IIS/634.aspxGenerating an SSL certificate on Windows without IISLuke Breuer2009-09-30 22:26

2012-09-19 14:17:09 646

转载 MPEG Audio Frame Header

From: http://mpgedit.org/mpgedit/mpeg_format/mpeghdr.htmThis is a brief and informal document targeted to those who want to deal with the MPEG format. If you are one of them, you probably already

2012-08-30 15:31:26 1067

转载 C/C++运算符优先级表 - C Operator Precedence Table

From: http://www.difranco.net/compsci/C_Operator_Precedence_Table.htm difranco.netC Operator Precedence TableThis page lists C operators in order of precedence (highest to lowest).

2012-08-11 08:31:19 1251

转载 Inline Virtual Functions

From: http://msdn.microsoft.com/zh-cn/magazine/cc301407(en-us).aspxQHow does C++ handle inline virtual functions? When a function is inline and virtual, will code substitution take

2012-08-10 16:45:18 507

转载 高效计算Fibonacci数

From: http://blog.csdn.net/jcwkyl/article/details/3677747以前只知道使用递归或递推的方法,最近在CSDN论坛上学到一种新的解法,在自己所知的几个算法里,它具有最好的运行效率。这种方法使用下面这个关于Fibonacci数的矩阵恒等式: 这个算法就是根据这个恒等式,通过计算等式右边的那个矩阵的n次方来计算第n个Fibona

2012-08-10 10:09:30 526

转载 找出数组中两个只出现一次的数字

From: http://blog.csdn.net/hackbuteer1/article/details/68892176、有N+2个数,N个数出现了偶数次,2个数出现了奇数次(这两个数不相等),问用O(1)的空间复杂度,找出这两个数,不需要知道具体位置,只需要知道这两个值。       求解:如果只有一个数出现过奇数次,这个就比较好求解了,直接将数组中的元素进行异或,异或的结果就

2012-08-09 15:58:16 830

转载 任意给一个数,试证明这个数的某个倍数的十进制表示是01串

From: http://topic.csdn.net/u/20120510/12/10a50d29-be19-493e-87c7-990cae86a9ee.html?82352From:http://blog.csdn.net/hackbuteer1/article/details/7581306任意给一个数,试证明这个数的某个倍数的十进制表示是01串,比如3的倍数111是二进制

2012-08-08 16:25:31 811

转载 Strategies for Implementing POSIX Condition Variables on Win32

From:http://www.cs.wustl.edu/~schmidt/win32-cv-1.htmlStrategies for Implementing POSIX Condition Variables on Win32Douglas C. Schmidt and Irfan PyaraliDepartment of Computer ScienceWashi

2012-07-28 22:38:07 827

转载 Implementing a Thread-Safe Queue using Condition Variables

From: http://www.justsoftwaresolutions.co.uk/threading/implementing-a-thread-safe-queue-using-condition-variables.htmlOne problem that comes up time and again with multi-threaded code is how to

2012-07-28 21:50:24 989

转载 Gaplessly playing large audio file with MS wave I/O functions

From: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=4422&lngWId=3Windows waveOut Tutorial This tutorial is designed to help you use the windows waveOut interfacef

2012-07-27 17:23:30 1340

转载 Video compression picture types

From: http://en.wikipedia.org/wiki/Video_compression_picture_typesIn the field of video compression a video frame is compressed using different algorithms with different advantages and dis

2012-07-24 16:24:29 515

转载 MPEG-4 B-frames in AVI/VFW hackery description

From: http://forum.doom9.org/showthread.php?p=529561MPEG-4 B-frames in AVI/VFW hackery descriptionAs i had to describe a bunch of people how b-frames can be placed in .avi/be used duri

2012-07-24 16:17:59 1388

《算法导论》习题答案PDF格式

《算法导论》习题答案,由Philip Bille完成,英文原版。PDF格式

2010-01-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除