数字签名, 数字证书, 加密, SSL, HTTPS

加解密

  • 对称加密算法: DES, 3DES, AES(标准)
  • 非对称加密: RSA, DSA, 分公钥和私钥.

    摘要算法(Digest)

Read More

Genetic Algorithm Hello World

Genetic Algorithm For Hello World is really a great article to understand genetic algorithm. Here is python implementation.

Read More

Quick Sort C++ Implementation

Recursive Quick Sort implementation.

Read More

Heap Sort C++ Implementation

implement Heap Sort using maximum heap.

Read More

集成 Hexo, Github Pages, Travis 搭建个人博客

Reference 很详细地说明了安装、配置 Github Pages,Hexo,Travis 的方法。这里主要分享一下我的方法。
https://github.com/irgb/irgb.github.io 中包含3个分支:

Read More

约瑟夫环 (圆圈中的最后一个1)

n个数字(0,1,…,n-1)形成一个圆圈,从数字0开始,每次从这个圆圈中删除第m个数字(第一个为当前数字本身,第二个为当前数字的下一个数字)。当一个数字删除后,从被删除数字的下一个继续删除第m个数字。求出在这个圆圈中剩下的最后一个数字。

Read More

Longest Increasing Subsequence

Problem:

Given an unsorted array of integers, find the length of longest increasing subsequence.

Read More