资源简介
Java写的Gps,是一个作业,功能比较齐全………………
代码片段和文件信息
public class Chain
{
public ChainNode first;
public Chain(){first=null;}
public void Delete(int k)//删除元素
{
try
{
if(k<1||first==null)
throw new Exception(“Exception:BadInput7“);
ChainNode p=first;
if(k==1)
first=first.link;
else
{
ChainNode q=first;
for(int index=1;index q=q.link;
if(q==null||q.link==null)
throw new Exception();
p=q.link;
q.link=p.link;
}
}
catch(Exception e)
{
System.out.println(“please rewrite9“);
}
}
public int search(int elem)//查询元素
{
ChainNode current=first;
int index=1;
while(current!=null&¤t.data!=elem){
current=current.link;
index++;
}
if(current!=null) return index;
return 0;
}
public void Insert(int kint x)//插入元素
{
try
{
if(k<0)throw new Exception(“Exception:BadInput11“);
ChainNode p=first;
for(int index=1;index p=p.link;
if(k>0&&p==null)throw new Exception(“Exception:BadInput12“);
ChainNode y=new ChainNode();
y.data=x;
if(k!=0)
{
y.link=p.link;
p.link=y;
}
else{
y.link=first;
first=y;
}
}
catch(Exception e)
{
System.out.println(e.getMessage());
System.out.println(“please rewrite13“);
}
}
public boolean IsEmpty()//判断链表是否为空
{
return first==null;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 226 2009-02-27 17:35 GPS\GPS\.classpath
文件 380 2009-02-27 17:35 GPS\GPS\.project
文件 1657 2009-03-04 12:45 GPS\GPS\Chain.class
文件 1394 2009-02-27 17:40 GPS\GPS\Chain.java
文件 658 2009-03-04 12:45 GPS\GPS\ChainIterator.class
文件 349 2009-02-27 17:40 GPS\GPS\ChainIterator.java
文件 286 2009-03-04 12:45 GPS\GPS\ChainNode.class
文件 84 2009-02-27 17:40 GPS\GPS\ChainNode.java
文件 5413 2009-03-04 12:45 GPS\GPS\EditANewMap.class
文件 5771 2009-02-28 00:41 GPS\GPS\EditANewMap.java
文件 5927 2009-03-04 12:45 GPS\GPS\EditExistedMap.class
文件 6203 2009-02-27 17:40 GPS\GPS\EditExistedMap.java
文件 1971 2009-03-04 12:45 GPS\GPS\FindShortestPath.class
文件 1929 2009-02-27 17:53 GPS\GPS\FindShortestPath.java
文件 2409 2009-03-04 12:45 GPS\GPS\GetMapInformation.class
文件 2186 2009-02-27 17:40 GPS\GPS\GetMapInformation.java
文件 773 2009-03-04 12:45 GPS\GPS\ImportMapfr
文件 773 2009-03-04 12:45 GPS\GPS\ImportMapfr
文件 965 2009-03-04 12:45 GPS\GPS\ImportMapfr
文件 4979 2009-03-04 12:45 GPS\GPS\ImportMapfr
文件 5539 2009-02-27 17:40 GPS\GPS\ImportMapfr
文件 8057 2009-03-04 12:45 GPS\GPS\Mainfr
文件 7338 2009-02-27 18:02 GPS\GPS\Mainfr
文件 33368 2009-02-28 00:55 GPS\GPS.jar
目录 0 2009-10-13 21:16 GPS\GPS
目录 0 2009-10-13 21:16 GPS
----------- --------- ---------- ----- ----
98635 26
- 上一篇:Java Web条件查询含源码
- 下一篇:63k的移动QQ——经测试过能用
相关资源
- Android GPS定位源代码
- Android GPS定位 代码+APK
- android手机共享GPS到一个IP端口或蓝牙
- gps定位谷米gt06 java代码
- 串口接收GPS
- GPS Status_卫星定位
- 基于Android技术的北斗/GPS车载导航系统
- Android 最简单的GPS获取源代码
- Android 强制开启GPS
- Qt on Andorid GPS应用
- GPS星历文件计算卫星位置程序
- Android 获取Gps信息的程序源码
- android GPS 非常实用的卫星定位可直接
- android location 数据标准输出,原始mn
- android studio获取当前经纬度的简单
- Android 自身GPS定位demo
- E4A源码GPS应用
- GPSTEST android gpstest source code
- 基于Android平台的GPS导航系统的设计与
- RTKlib关于高精度GPS动态定位函数与处
- GeoTools和Proj4分别实现GPS坐标和中国大
- android模拟位置程序 - gpssim
- STM32 TFT GPS程序,包括TFT触摸屏使用
- 最新的经纬度获取!wifi,基站,gps定
- android简单定位
- android 百度地图API最新版 gps定位 获取
- android GPS定位 记录生活轨迹
- android 模拟 GPS定位(让微信可定位到
- android GPS定位 获取经纬度地址
- android 相机只拍摄矩形区域图片
评论
共有 条评论