码迷,mamicode.com
首页 >  
搜索关键字:ve    ( 1112个结果
Developing a plugin framework in ASP.NET MVC with medium trust
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
C++中的冒泡排序,选择排序,插入排序
最简单的插入排序:思想,两两之间比较,时间复杂度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
【动态规划】【最短路】【spfa】bzoj1207 [HNOI2004]打鼹鼠
若打了一只鼹鼠后,还能打另一只,我们可以在它们之间连权值为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 words
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
SQLITE WITH ENTITY FRAMEWORK CODE FIRST AND MIGRATION
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
关于iphone6/5/4s 在iOS8.0系统下 只读@3x图片
'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
[Node.js] Level 6. Socket.io
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
Convert character array to string in MATLAB
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 structure
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
ZOJ Problem Set - 1004-Anagrams by Stack
?? 唉!先直接上源代码吧!什么时候有时间的再来加说明! #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
1112条   上一页 1 ... 96 97 98 99 100 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!