-
链接列表进行排序
在java中的排序链表的一个简单的程序,它是从一个手工制作的编码,并且它是由面向对象编程。
- 2022-08-18 18:51:41下载
- 积分:1
-
第三方登录
这是一个第三方登录的demo 里面有详细的代码 一看便懂 希望能给大家解决一些问题 谢谢
- 2022-06-03 15:47:04下载
- 积分:1
-
俄罗斯方块java源码
作者:本人华科大二计算机专业,现在研究java,
在网上研究了一下传智播客的俄罗斯方块,又结合网络编程,
自己写了一个可以联机的俄罗斯方块。
通过socket发送数据,采用c/s模式
- 2022-02-02 08:18:34下载
- 积分:1
-
Hello World
这是一个java版的HelloWorld,麻雀虽小五脏俱全,虽然很简单,但是对刚刚接触编程的人还是很有帮助的,希望对大家有用。
- 2022-03-13 02:40:12下载
- 积分: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
-
数据链路层实现
应用背景只是一个简单的DLL实现网络可以帮助学校工作或有助于工程 大学学生;实施是稍微混乱,我只给了数据链路层的实施,而其他层都被忽略了;没有所有的主要层,你只能用它来解决数据链路层的问题关键技术Java是用来代替C #这是伤心但我真的想要一些硬币和混乱真是RAD但我只是想下载一些NS2代码项目的工作,所以请为他们对神的爱,让我downkload该文件,我想让我多赫内柔韧这 ;的闹剧,上帝保佑我们
- 2022-12-14 19:25:03下载
- 积分:1
-
Java web开发酒店管理系统
提供普通二星级酒店的必要功能,可动态的进行与房间信息相关的所有操作,对于宾客,可执行散客和团体开单两种方式,可为宾客预定房间,可为不同的宾客设置不能种类房间的折扣及其优惠设置,本系统可动态显示当前所有房间的信息。
- 2022-02-20 15:36:23下载
- 积分:1
-
Android之Wifi学习教程
内附讲解word 介绍程序的Demo 运行环境eclipse如在Android中对Wifi的操作,简单介绍一下 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报 打分 发表评论 暂无评论 0 粉丝 0 发布 0 获赞 关注 查看主页 javaandroidWiFi学习教程 相关源码推荐 猜数字游戏 0 0 暂无评分汽车租赁系统1.0 0 0 暂无评分spring-boot-jdbctemplate 0 0 暂无评分系统管理的应用 0 0 暂无评分用于解决后端java跨域问题 0 0 暂无评分 介绍信息预览(0条)评论打分
- 2022-03-12 22:55:53下载
- 积分:1
-
android陀螺仪应用
用于android手机中陀螺仪姿态角检测,包含了KF算法。
可以用于各种手机姿态、倾角检测。
// Integrate around this axis with the angular speed by the timestep
// in order to get a delta rotation from this sample over the timestep
// We will convert this axis-angle representation of the delta rotation
// into a quaternion before turning it into the rotation matrix.
- 2022-03-04 23:31:56下载
- 积分:1
-
java osworkflow mysql版本
最近在研究所以写了点东西 可以看看
创建一个数据源 导入mysql sql文件 即可使用
tomcat 5.5 mysql5.1
- 2022-08-19 20:12:47下载
- 积分:1