-
小游戏五子棋大战
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
-
JavaEE 博客系统
基于Javaee Struts框架的博客系统,包括了数据库文件...............................................................................
- 2022-06-20 13:16:30下载
- 积分:1
-
OBDII解析android端源码
OBDII解析android端源码,方便android端做各种app开发。本代码主要是实现了android端连接OBD蓝牙,然后发送和接受各种命令。
- 2022-06-17 00:53:08下载
- 积分:1
-
数据挖掘的离散算法
这种算法是用 java 写的。基本上,当你有很多的变量在您的数据基础,通常他们不是在一系列 [1-1],有时数据冗余或 t嘿是在一个连续的范围,以及这产生错误的已被淘汰。因此,这种算法可以帮助您你在一个范围中的变量由用户定义离散。这是一个教育的示例主题中的数据挖掘源代码。
- 2022-04-08 16:03:32下载
- 积分:1
-
ibatis入门学习Demo
ibatis入门学习Demo,希望对你有帮助。
里面有源码和配置说明,数据库表需要自己建立,数据库类型使用的是SQLServer2008。
- 2022-03-16 20:29:08下载
- 积分:1
-
新安卓短信栏载+邮箱接收源码
资源描述安卓短信栏载+邮箱接收源码 安卓短信栏载+邮箱接收源码
- 2022-01-28 19:07:23下载
- 积分:1
-
android蓝牙通信
android蓝牙开发小程序,
基于android系统,详细的源程序,注释
android,蓝牙开发浅谈,蓝牙连接,socket连接-android, development of Bluetooth, Bluetooth connectivity, socket connection
- 2022-06-22 06:05:12下载
- 积分:1
-
通用派叫号系统
派叫号系统很好地解决客户在服务机构办理业务时所遇到的各种排队、拥挤和混乱现象,为客户办理业务带来莫大的方便和愉悦。
- 2023-02-20 12:00:04下载
- 积分:1
-
俄语背单词
资源描述一款Android版俄语单词记忆源码,信息齐全,功能强大,值得下载学习体验。
- 2022-01-24 15:01:16下载
- 积分:1
-
poi把表单导出excel
一个简单而又实际的例子poi把表单导出excel,这个例子既有对excel的读功能同时又有对excel的写的功能,方便我们学习poi对excel的操作。
- 2022-08-20 17:32:23下载
- 积分:1