摘要: http://bbs.csdn.net/topics/390461996在iOS平台上,大部分应用是不允许在后台运行并连接网络的。在应用没有被运行的时候,只能通过ApplePushNotificationService(APNs)把数据发送到终端用户。对于互联网应用,正确高效的使用APNs显然非常重... 阅读全文
posted @ 2014-01-09 15:18 dingxiaoyue 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 插件说明在手机的聊天应用中,经常出现的一个需求就是把用户的离线消息通过推送系统推送到用户的手机上,为了实现这个功能,本人就开发了本插件,这个openfire 插件是拦截了发给openfire用户的离线消息,然后根据自身的业务逻辑推送到手机上。使用方法在offlinemsg\src\java\org\... 阅读全文
posted @ 2014-01-09 08:59 dingxiaoyue 阅读(233) 评论(0) 推荐(0) 编辑
摘要: http://hermosa-young.iteye.com/blog/1798026每次都要搜索一下太麻烦了,留个底,方便以后查询一般情况下,我们都要将linux自带的OPENJDK卸载掉,然后安装SUN的JDK。首先查看Linux自带的JDK是否已安装。输入如下命令,查看已经安装的JAVA版本信... 阅读全文
posted @ 2014-01-07 11:27 dingxiaoyue 阅读(221) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner;public class BSTree>{ BiNode root; class BiNode{ AnyType data; BiNode left; BiNode right; public BiNode(AnyType data){ ... 阅读全文
posted @ 2014-01-03 17:36 dingxiaoyue 阅读(182) 评论(0) 推荐(0) 编辑
摘要: import java.util.LinkedList;import java.util.Queue;import java.util.Scanner;import java.util.Stack;public class BTree> { BTNode root=new BTNode(); c... 阅读全文
posted @ 2014-01-03 17:34 dingxiaoyue 阅读(293) 评论(0) 推荐(0) 编辑
摘要: package design;import java.util.Scanner;//循环双链表public class LinkedList { private int theSize; private Node beginMarker; private Node endMark... 阅读全文
posted @ 2014-01-02 20:13 dingxiaoyue 阅读(958) 评论(0) 推荐(0) 编辑
摘要: import java.util.LinkedList;import java.util.Queue;import java.util.Scanner;import design.BTree.BTNode;public class HuffMan { HNode root=new HNode(... 阅读全文
posted @ 2013-12-31 20:47 dingxiaoyue 阅读(311) 评论(0) 推荐(0) 编辑
摘要: import java.util.LinkedList;import java.util.Queue;import java.util.Scanner;//孩子链表表示法public class CTree{ PLNode nodes[]=new PLNode[20]; int n; PLNode ... 阅读全文
posted @ 2013-12-31 20:46 dingxiaoyue 阅读(553) 评论(0) 推荐(0) 编辑
摘要: import java.util.LinkedList;import java.util.Queue;import java.util.Scanner;//双亲表示法创建public class PTree{ PTNode nodes[]=new PTNode[15]; int n; ... 阅读全文
posted @ 2013-12-31 20:43 dingxiaoyue 阅读(609) 评论(0) 推荐(0) 编辑
摘要: 有向网的各种功能实现:1:在邻接矩阵、邻接表和逆邻接表之间转换。2:完成增加顶点和删除顶点的功能,删除顶点也要删除与之关联的边;3:完成增加边和删除边的功能;4:完成图的深度优先遍历和广度优先遍历;5:广度优先的生成树并对生成树进行遍历6:判断图的连通性,输出连通分量的个数;7:判断图中是否存在环;... 阅读全文
posted @ 2013-12-28 21:15 dingxiaoyue 阅读(362) 评论(0) 推荐(0) 编辑