C++编程思想 C++入门书籍,不多介绍 http://www.laixp.cn/soft/sort01/sort02/down-12215.html
上传时间: 2013-12-25
上传用户:gut1234567
Effevtive_STL 本书是对STL的一些原理和一些使用STL过程中经常放的一些错误进行分析,讲解,很不错的一本书,推荐看 http://www.laixp.cn/soft/sort01/sort02/down-11235.html http://www.laixp.cn/soft/sort01/sort02/down-12267.html
标签: Effevtive_STL STL 过程 分
上传时间: 2013-12-16
上传用户:zhangyi99104144
一个自然语言处理的Java开源工具包。LingPipe目前已有很丰富的功能,包括主题分类(Top Classification)、命名实体识别(Named Entity Recognition)、词性标注(Part-of Speech Tagging)、句题检测(Sentence Detection)、查询拼写检查(Query Spell Checking)、兴趣短语检测(Interseting Phrase Detection)、聚类(Clustering)、字符语言建模(Character Language Modeling)、医学文献下载/解析/索引(MEDLINE Download, Parsing and Indexing)、数据库文本挖掘(Database Text Mining)、中文分词(Chinese Word Segmentation)、情感分析(Sentiment Analysis)、语言辨别(Language Identification)等API。
上传时间: 2013-12-04
上传用户:15071087253
matlab实现最优化选择的一个算法,大家可以下下来参考,我也是从别处down的,谢谢原作者
上传时间: 2013-12-15
上传用户:685
关于extjs详细开发的文档,我也是从网络上down下来的,好东西不敢一个人独享,分享出来给大家,
上传时间: 2016-12-24
上传用户:小草123
This document is a "practical guide" to very quickly setup CVS/RCS source code control system. This document has custom shell scripts which are wrappers on top of CVS. These scripts provide an easy user interface for CVS. Several shell scripts are provided to make RCS more easy to use. The information in this document applies to Linux and as well as to all other flavors of Unix liks Solaris, HPUX, AIX, SCO, Sinix, BSD, SCO, etc.. and BeOS.
标签: This practical document control
上传时间: 2014-01-16
上传用户:gxmm
1,新闻栏目二级分类,随意修改,管理员分级管理 2,采用强大的HTML编辑器输入新闻文章 3,不存在任何新闻内容不能分段,不出空格的问题 4,可以直接复制任何图文信息,输出和原来格式一模一样 5,前台使用JS随意调用新闻 6,支持图片新闻,无组件上传图片到数据库,前台JS调用 7,安装使用方便,你只需把头部文件top.asp换成你的就可以了
标签:
上传时间: 2014-11-29
上传用户:franktu
FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPACE ,TAB,PGUP,PGDOWN,UP,DOWN,LEFT,RIGHT AND SO ON
标签: file functions FileEdit BACKSPAC
上传时间: 2017-01-02
上传用户:风之骄子
xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。 DS18B20温度控制数码管显示 : 1、K3 → 进入设定温度报警值 TL 状态: L--20 2、K3 → 进入设定温度报警值 TH 状态: H--28 3、K3 → 返回 4、设定过程: K1 →加键 (UP), K2 →减键 (DOWN),可快速调。
上传时间: 2013-12-11
上传用户:Altman
void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right Knight(i+2,j+1) Knight(i-1,j-2) //up Knight(i+1,j-2) Knight(i+1,j+2) //down Knight(i-1,j+2) // board[i][j]=0 step-- }
上传时间: 2014-01-17
上传用户:cxl274287265