15 Jan 2014
|
网络与安全
|
openssl
openssl: 公钥加密数据,私钥解密数据 私钥签名数据,公钥验证数据 百度百科: SSL是Secure...
13 Jan 2014
|
algorithm
|
leetcode
https://www.v2ex.com/t/422083#reply20 https://github.com/begeekmyfriend/leetcode 刷LeetCode,梳理解题思路。 ##1.Two Sum##...
原文地址 Lsof 是遵从Unix 哲学的典范,它只做一件事情,并且做的相当完美——它可以列出某个进程打开的所有文件信息。打开的文件可能是普通的文件,目录,NFS文件,块文件,字符文件,共享库,常规管道,明明管道,符号链接,Socket流,网络Socket,UNIX域Socket,以及其它更多。因为Unix系统中几乎所有东西都是文件,你可以想象lsof该有多有用。 如何使用lsof?...
浮点数比较 #include <stdlib.h> #include <stdio.h>...
typedef struct _DOUBLE_LINK_NODE { int...
#include <stdio.h> #include <stdlib.h> struct...
配置.gitconfig git push 免去 origin...
c语法糖 函数指针 Callback回调函数 c++98/03 模板...
常见的算法时间复杂度由小到大依次为: Ο(1)<Ο(log2n)<Ο(n)<Ο(nlog2n)<Ο(n2)<Ο(n3)<…<Ο(2n)<Ο(n!) http://www.howzhi.com/note/2846 现在,我们来比较一下不同算法的运算速度:对数级 线性级...
1、x86是指intel的开发的一种32位指令集 i386:是指兼容Intel 80386处理器 x86或80x86是英代爾Intel首先开发制造的一种微处理器体系结构的泛称。該系列較早期的處理器名稱是以數字來表示,並以“86”作為結尾,包括Intel 8086、80186、80286、80386以及80486,因此其架構被稱為“x86”。由於數字並不能作為註冊商標,因此Intel及其競爭者均在新一代處理器使用可註冊的名稱,如Pentium。現時Intel把x86-32稱為IA-32,全名為Intel...
02 May 2013
|
c/c++
|
stl
stl reference
C++ STL中文版.pdf
02 May 2013
|
语言与设计
|
thread
线程安全 对共享资源的安全使用 不会把数据写脏 可重入 原子性...
01 May 2013
|
c/c++
语言与设计
http://www.cnblogs.com/haippy/p/3412858.html
24 Apr 2013
|
c/c++
|
boost
书籍: The Boost C++ Libraries...
Introspective Sorting(内省式排序)。 #include <stdio.h> #include...
19 Apr 2013
|
c/c++
|
boost
http://edyfox.codecarver.org/html/boost_python.html http://www.it165.net/pro/html/201507/46357.html http://blog.csdn.net/majianfei1023/article/details/46781581 python use...
希尔排序的实质就是分组插入排序[平均时间 O(nlogn) 最差时间O(n^s) 1<s<2,不稳定],该方法又称缩小增量排序,因DL.Shell于1959年提出而得名。 #include...
01 Apr 2013
|
语言与设计
|
thread
pthread pthread pthread_mutex_t pthread_cond_t pthread_attr_t...
#include <stdio.h> void print(int a[],...
冒泡排序[O(n^2),稳定],不断下沉大数。 #include <stdio.h> void printArray(int...