码迷,mamicode.com
首页 > 其他好文
《The Story of My Life》Introductiom - Historical and Literary Context - Education of the Deaf and Blind
At the time the Story of My Life was published, the idea of a disabled person as an active member of society was radical. Through there were institute...
分类:其他好文   时间:2014-09-12 01:11:42    阅读次数:268
c 单链表反转(不添加新结点空间)
最近复习考研,加上一直都将"算法"放在很高的位置,所以,蛮重视算法的.不多说了,其实这个问题,不难理解的.主要代码: 1 //反转单链表. 2 void 3 reverse(linklist lList) { 4 Linknode *pre = NULL; //注意该结点不能再指向别的...
分类:其他好文   时间:2014-09-12 01:11:24    阅读次数:221
处理xml
using System.Xml;using System;using System.Text;using System.Net;using System.Collections;using System.Collections.Generic;public class xml{ public s....
分类:其他好文   时间:2014-09-12 01:11:02    阅读次数:215
ACM_1001_Exponentiation 详解
参考:http://blog.csdn.net/rually/article/details/8585268#includeusing namespace std;#define MAX 126int first[MAX],second[MAX];void pow(char base[],int ....
分类:其他好文   时间:2014-09-12 01:10:42    阅读次数:305
c 字符串的拼接.
完整代码: 1 #include 2 #include 3 #include 4 5 #define TRUE 1 6 #define FALSE 0 7 8 char * 9 strca(char *, char *);10 11 char *12 join1(char *, cha...
分类:其他好文   时间:2014-09-12 01:10:32    阅读次数:277
组合数学 - 波利亚定理 --- poj : 2154 Color
ColorTime Limit:2000MSMemory Limit:65536KTotal Submissions:7873Accepted:2565DescriptionBeads of N colors are connected together into a circular neckla...
分类:其他好文   时间:2014-09-12 01:10:02    阅读次数:322
hdu2883 最大流,判断满流 优化的SAP算法
这是09年的多校联赛题目,比10年的难度要大。如果没做过hdu3572,建议先去做。有了解题思维再来做这题。 这题与hdu3572类似。但是1 #include#include#includeusing namespace std;const int N=2000,M=1000000, INF...
分类:其他好文   时间:2014-09-12 01:09:32    阅读次数:301
红盟教程学习笔记
网络安全从其本质上来讲就是网络上的信息安全。从广义来说,凡是涉及到网络上信息的保密性、完整性、可用性、真实性和可控性的相关技术和理论都是网络安全的研究领域。确保网络系统的信息安全是网络安全的目标。信息安全包括两个方面:信息的存储安全和信息的传输安全。信息的存储安全是指信息在静态存放状态下的安全,如是...
分类:其他好文   时间:2014-09-12 01:09:22    阅读次数:213
hdu3572Task Schedule 最大流,判断满流 优化的SAP算法
PS:多校联赛的题目质量还是挺高的。建图不会啊,看了题解才会的。 参考博客:http://blog.csdn.net/luyuncheng/article/details/7944417 看了上面博客里的题解,思路就有了。不过建图还是有点麻烦。我把源点设为n+1 (不想从0开始,不修改模版...
分类:其他好文   时间:2014-09-12 01:09:12    阅读次数:304
C#程序集系列01,用记事本编写C#,IL代码,用DOS命令编译程序集,运行程序
本篇主要体验:编写C#,IL代码,用"VS2012开发人员命令提示"编译成程序集,并运行程序。 □ C#文件编译为程序集 →在F盘创建as文件夹→在as文件夹下创建MyClass.cs→用记事本打开编写如下代码,并保存using System; public class MyClass { publ...
分类:其他好文   时间:2014-09-12 01:08:52    阅读次数:275
Day4:T1小技巧(类似于指针操作)T2搜索+小细节
Day4:其中有很多小技巧getT1一直没有听到过像这样的小技巧的略专业名词,有点类似于指针操作,之前有碰到过很多这样的题目每次都是以不同的形式出现,但是感觉思想还是有点接近的吧(就比如某天有一题happy,貌似也是这类型的)这类题目第一眼总是看起来特别的不能写,其实想到了这些技巧之后很简单感觉这也...
分类:其他好文   时间:2014-09-12 01:08:42    阅读次数:188
[LeetCode] Minimun Depth of Binary Tree
1 public class Solution { 2 public int minDepth(TreeNode root) { 3 if (root==null) return 0; 4 List upperLevelList = new ArrayLis...
分类:其他好文   时间:2014-09-12 01:08:32    阅读次数:285
转:Servlet的url匹配以及url-pattern详解
Servlet是J2EE开发中常用的技术,使用方便,配置简单,老少皆宜。估计大多数朋友都是直接配置用,也没有关心过具体的细节,今天遇到一个问题,上网查了servlet的规范才发现,servlet中的url-pattern还是有一些文章在里面的,总结了一些东西,放出来供大家参考,以免遇到问题又要浪费时...
分类:其他好文   时间:2014-09-12 01:08:22    阅读次数:161
Architecture of a Highly Scalable NIO-Based Server
Architecture of a Highly Scalable NIO-Based ServerSelectorsA selector (java.nio.channels.Selectorand subclasses) provides a mechanism for waiting on c...
分类:其他好文   时间:2014-09-12 01:08:13    阅读次数:288
总结过去10年的程序员生涯
展望未来,总结过去10年的程序员生涯,给程序员小弟弟小妹妹们的一些总结性忠告 走过的路,回忆起来是那么曲折,把自己的一些心得体会分享给程序员兄弟姐妹们,虽然时代在变化,但是很可能你也会走我已经做过的10年的路程,有些心得体会你可以借鉴一下,觉得说得有道理的你就接纳,觉得说得没道理的,你就抛弃,以下....
分类:其他好文   时间:2014-09-12 01:08:02    阅读次数:264
xdebug
save_run($data, "xhprof");// echo "" ;// echo $run_id ; //file_put_contents("/data/www/dianking/egougjx/xhprof.log", $run_id."\n", FILE_APPEND) ; ?>上者...
分类:其他好文   时间:2014-09-12 01:07:12    阅读次数:229
POJ 1094 Sorting It All Out
Sorting It All OutTime Limit: 1000msMemory Limit: 10000KBThis problem will be judged onPKU. Original ID:109464-bit integer IO format:%lld Java class n...
分类:其他好文   时间:2014-09-12 01:06:42    阅读次数:178
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!