-
GoF 模式: 装饰
In 面向对象的编程, the 装饰模式(也被称为包装器,与共享替代命名 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-07-24 14:21:55下载
- 积分:1
-
蚁群优化
蚁群想法是利用蚂蚁的自组织原则,使他们帮助解决了计算problems.ACO是基于蚂蚁的觅食行为殖民地和目标的优化问题。这是由步道铺设步道下进行蚂蚁,由此蚂蚁被审判或化学用另一只蚂蚁留下影响的行为。它使用基于它的分布式集体学习和决策的决策策略。它发现在路径一些具体根据实验观察等周边蚂蚁的觅食行为约束条件,从而选择连接最少的可能的路径中的最短路径源和目的地。
- 2022-07-26 12:10:52下载
- 积分:1
-
Java潜艇大战小游戏
应用背景这是在网上找到的一个潜艇大战的源代码,适合初学者,结构清楚简单,很容易读懂,并可以在上面丰富上一些自己的功能,很不错的源代码!关键技术java源码,结构条理清晰,用了很多的数据结构和少量的算法,没有很难懂的地方,并且关键代码均标有注释,初学者不可多得的好源码
- 2022-03-13 06:57:45下载
- 积分:1
-
pdf reader code in android
These codes were developed for android to open and read the pdf documents.
These codes were developed for android to open and read the pdf documents.
These codes were developed for android to open and read the pdf documents.
These codes were developed for android to open and read the pdf documents.
These codes were developed for android to open and read the pdf documents.
These codes were developed for android to open and read the pdf documents.
- 2022-01-28 22:25:59下载
- 积分:1
-
基于J2EE平台的火车站网上订票系统 源码
在网上找了好半天,终于找到一个用java语言写的火车票订购系统的源码,特此共享给各位java爱好者,希望能共进步!
- 2022-02-25 17:47:20下载
- 积分: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
-
jpcap网络流量监控
JPCAP实际上并非一个真正去实现对数据链路层的控制,而是一个中间件,JPCAP调用winpcap/libpcap,而给 JAVA语言提供一个公共的接口,从而实现了平台无关性。
- 2022-09-22 21:55:03下载
- 积分:1
-
java实现基础连连看
资源描述//创建两个数组线性表{"George","Jim","John","Blake","Kevin","Michael"}
//和{"George","Katie","Kevin",Micheal","Ryan"},求他们的并、差和交集。
//(可以先备份这些线性表,以防止这些集合操作改变了原来的线性表)
- 2022-08-18 16:57:41下载
- 积分:1
-
安卓蓝牙程序
最近穿戴设备发展得很火,把相关技术也带旺了,其中一项是BLE(Bluetooth Low Energy)。BLE是蓝牙4.0的核心Profile,主打功能是快速搜索,快速连接,超低功耗保持连接和传输数据,弱点是数据传输速率低,由于BLE的低功耗特点,因此普遍用于穿戴设备。Android 4.3才开始支持BLE API,所以请各位客官把本文代码运行在蓝牙4.0和Android 4.3及其以上的系统,另外本文所用的BLE终端是一个蓝牙4.0的串口蓝牙模块。因为我的是4.2的机子所以测试的时候直接跳出解析包失败,有符合条件的真机的朋友可以下载看一下。源码部分有注释 项目编码UTF-8
- 2022-07-07 20:59:05下载
- 积分:1
-
图书馆管理系统
全方位的图书馆管理系统,VB 源码,书面的也可以用,请支持!!!全方位的图书馆管理系统,VB 源码,书面的也可以用,请支持!!!...
- 2022-07-17 08:04:20下载
- 积分:1