-
迭代范围 - 基于搜索算法
Webstudy如何回答(可能有多个)范围内选择查询应答排名查询。每个选择查询对给定的字符串和一个字符串的集合之间的相似性阈值。在这种方式中,我们可以利用现有的近似串-选择技术,而无需修改其实现。我们开发所谓的“迭代范围搜索”(“IRS”的简称)的算法。算法1示出了algorithm.We的伪代码开始的初始相似性阈值,这可能是基于查询(第5行),计算出的固定值奥拉值。所述算法有两个步骤。
- 2022-01-26 06:24:30下载
- 积分:1
-
计划在NetBeans中发送电子邮件
程序段发送邮件,你必须有Gmail和Hotmail邮件制造的NetBeans7.2
- 2023-02-03 20:30:03下载
- 积分:1
-
测验系统
此项目包含一个测验系统,有的计时器,科目,计分系统和开发使用 java 的波动。一切都是使用 Netbeans 轻松地编辑。
- 2022-07-20 04:23:03下载
- 积分:1
-
android 选择照片/拍照 并上传图片到服务器源码(含服务器端接收源码)
android上传图片,服务器端用C#语音接收
- 2015-05-07下载
- 积分:1
-
test_asynctask
这是自己编写的一套android关于异步下载处理的源码。(Asynchronous download android)
- 2011-05-10 21:11:21下载
- 积分:1
-
汽车管理
这是一个简单的程序来管理汽车。执行CRUD操作。这对于初学者学习jsp的。我已经使用了MVC的原则。在这个模型中我有BO级,3控制器。在地图达尔我的代码与数据库进行通信。
- 2023-06-27 14:40:04下载
- 积分:1
-
beijingyinyueshixianfangfa
android 的 背景音乐 是 实现方法 ,游戏里面 可以用此方法来实现背景音乐(android' s background music is implementation, the game which you can use this method to achieve the background music)
- 2011-08-08 10:36:40下载
- 积分:1
-
GooglePAndroidcode
全部内容基于Android SDK 随书附赠400多分钟的详细教学视频,286段示例代码 从事一线开发的作者团队提供在线答疑.(GoogleAndroidDevelopment and Practice)
- 2013-11-19 14:12:36下载
- 积分:1
-
LDA主题模型提取
资源描述能够实现lda主题模型的建立,很不错的代码,研究了 好久。初次训练模型命令:-est -alpha 0.5 -beta 0.1 -ntopics 100 -niters 1000 -savestep 100 -twords 20 -dir models/casestudy-en -dfile "文件名称"
继续训练模型命令:-estc -dir models/casestudy-en/ -model model-01000 -niters 800 -savestep 100 -twords 30
对新的documents进行测试:-inf -dir models/casestudy-vi/ -model model-01800 -niters 30 -twords 20 -dfile "新文件名称"
- 2022-01-28 06:16:46下载
- 积分:1
-
小游戏五子棋大战
class LNode{
private int row;
private int col;
private Color chessColor;
private LNode next;
public LNode(int row,int col,Color chessColor){
this.row=row;
this.col=col;
this.chessColor=chessColor;
}
public LNode(){
this.next=null;
}
public void setRow(int row){
this.row=row;
}
public int getRow(){
return this.row;
}
public void setCol(int col){
this.col=col;
}
public int getCol(){
return this.col;
}
public void setChessColor(Color chessColor){
this.chessColor=chessColor;
}
public Color getChessColor(){
return this.chessColor;
}
public void setNext(LNode next){
this.next=next;
}
public LNode getNext(){
return this.next;
}
}
class NullAndCount{
private int nullCount=0;
private int chessCount=0;
public void setNullCount(int nullCount){
this.nullCount=nullCount;
}
public int getNullCount(){
return this.nullCount;
}
public void setChessCoun
- 2022-05-08 02:47:07下载
- 积分:1