http://shazwazza.com/post/Developing-a-plugin-framework-in-ASPNET-with-medium-trust.aspxJanuary 7, 2011 10:06 Tweet I’ve recently spent quite ...
分类:
Web程序 时间:
2014-11-30 22:58:25
阅读次数:
273
最简单的插入排序:思想,两两之间比较,时间复杂度o(n^2)void bubblesort(vector&vec, int n){ if (&vec==NULL) return; int temp; bool flag; for (int i = 0; i ve...
分类:
编程语言 时间:
2014-11-23 21:25:50
阅读次数:
201
若打了一只鼹鼠后,还能打另一只,我们可以在它们之间连权值为1的边。于是答案就是 以m为终点的最长路长度+1。建反图,就是单源最长路。MLE TLE 一时爽。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 ve...
分类:
其他好文 时间:
2014-11-22 10:38:15
阅读次数:
232
The Knuth-Morris-Pratt Algorithm in my own wordsFor the past few days, I’ve been reading various explanations ofthe Knuth-Morris-Pratt string searchin...
分类:
其他好文 时间:
2014-11-20 21:53:23
阅读次数:
335
Last month I’ve a chance to develop an app using Sqlite and Entity Framework Code First. Before I started with this project, I thought everything will...
分类:
数据库 时间:
2014-11-20 14:57:05
阅读次数:
181
've tried in a sample project to use standard, @2x and @3x images, and the iPhone 6+ simulator uses the @3x image. So it would seem that there are @3x images to be done (if the simulator actually replicates the device's behavior). But the strange thing is ...
分类:
移动开发 时间:
2014-11-19 01:53:31
阅读次数:
194
6.2Setting Up socket.io Server-SideSo far we've created an Express server. Now we want to start building a real-time Q&A moderation service and we've ...
分类:
Web程序 时间:
2014-11-17 22:46:42
阅读次数:
420
Matlab提取特征值是经常要读取多个图片文件,把文件名保存在数组中后再读取会出错。从stackoverflow中找到如下解决方法:I've a M by N matrix, each cell contains a character array, that is an image path. H...
分类:
其他好文 时间:
2014-11-16 20:03:43
阅读次数:
153
Open XML SDK class structureMarch 27, 2012byVincentI’ve gotten a few questions on the class structure of the Open XML SDK. There are articles on Open ...
分类:
其他好文 时间:
2014-11-06 19:56:23
阅读次数:
376
??
唉!先直接上源代码吧!什么时候有时间的再来加说明!
#include
#include
#include
#include
#include
#include
using namespace std;
/*
*i代表PUSH,o代表POP
*/
bool judge(deque sou,deque des,vector & res)
{
stack inistack;
for(ve...
分类:
其他好文 时间:
2014-11-06 14:59:49
阅读次数:
126