tr1 的 bind 和 function

首先来看两个文章,function/bind的救赎(上),http://blog.csdn.net/myan/arti…,以boost::function和boost:bind取代虚函数,http://blog.csdn.net/solstice/…,前者讲背景和理论,后者讲实际操作和细节对比,读来酣畅淋漓,醍醐灌顶 这么好的东西,当然要想着怎么在现有的环境条件下用起来,没有 boost,……

阅读全文

最长公共子序列

#include <stdio.h> #include <string.h> static const int MAX = 100; char str1[MAX], str2[MAX], str3[MAX]; int c[MAX][MAX], f[MAX][MAX]; inline int max(int a, int b) { return a>b ? a : b; } int dp(int i, int j) { if (c[i][j] == -1) { if (i==0 || j==0) { ……

阅读全文