码迷,mamicode.com
首页 >  
搜索关键字:sp    ( 111415个结果
《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
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
ubuntu 14.04 mysql 主从复制配置
一台虚拟机做master笔记本做slave;在授权grant replication slave,reload,super on *.* to slavedell@192.168.1.152 identified by '1234'在slave机远程登录,失败原因1:netstat -an | gr...
分类:数据库   时间:2014-09-12 01:10:12    阅读次数:321
【CMS】DedeCMS Error: (PHP 5.3 and above) Please set 'request_order' ini value to include C,G and P (recommended: 'CGP') in php.ini
DedeCMS Error: (PHP 5.3 and above) Please set 'request_order' ini value to include C,G and P (recommended: 'CGP') in php.ini修改php的配置文件php.inirequest_o...
分类:Web程序   时间:2014-09-12 01:09:52    阅读次数:215
ExtJs是当今最主流的前端界面开发工具之一
摘要:ExtJs是当今最主流的前端界面开发工具之一,功能强大,外观绚丽。虽然网上的开发文档很多,但是在实际应用中仍然会遇到很多问题,本文结合企业信息化、SAPERP等实际项目开发经验,对使用ExtJs开发做了一个梳理和总结,特别对开发中遇到的重点问题进行了详细阐述,希望能够为大家提供一些帮助。 关键...
分类:Web程序   时间:2014-09-12 01:09:02    阅读次数:348
[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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!