上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页
摘要: 描述如果一个数字序列逆置之后跟原序列是一样的就称这样的数字序列为回文序列。例如: {1, 2, 1}, {15, 78, 78, 15} , {112} 是回文序列, {1, 2, 2}, {15, 78, 87, 51} ,{112, 2, 11} 不是回文序列。 现在给出一个... 阅读全文
posted @ 2016-09-28 16:23 岳麓丹枫 阅读(305) 评论(0) 推荐(0)
摘要: 描述如果一个数字序列逆置之后跟原序列是一样的... 阅读全文
posted @ 2016-09-28 16:23 岳麓丹枫 阅读(177) 评论(0) 推荐(0)
摘要: 查看 Oracle 服务器字符集select... 阅读全文
posted @ 2016-09-16 23:29 岳麓丹枫 阅读(178) 评论(0) 推荐(0)
摘要: 查看 Oracle 服务器字符集select userenv('language') from dual;设置Oracle客户端字符集添加环境变量NLS_LANG 值与服务器的Oracle服务器字符集保持一致即可 阅读全文
posted @ 2016-09-16 23:28 岳麓丹枫 阅读(399) 评论(0) 推荐(0)
摘要: 方法:定义两个栈分别为 A,B;入队void... 阅读全文
posted @ 2016-09-16 21:44 岳麓丹枫 阅读(104) 评论(0) 推荐(0)
摘要: 方法:定义两个栈分别为 A,B;入队void enQueue(ELEMTYPE e){ A.push(e);}出队ELEMTYPE deQueue(ELEMTYPE e){ if(B.isEmpty()) { while(A.isEmpty()==false)... 阅读全文
posted @ 2016-09-16 21:43 岳麓丹枫 阅读(130) 评论(0) 推荐(0)
摘要: 方法一 void swap(int &a,... 阅读全文
posted @ 2016-09-16 21:21 岳麓丹枫 阅读(105) 评论(0) 推荐(0)
摘要: 方法一 void swap(int &a, int &b){ a = a + b; b = a - b; a = a - b;}方法二 void swap(int &a, int &b) { a ... 阅读全文
posted @ 2016-09-16 21:20 岳麓丹枫 阅读(161) 评论(0) 推荐(0)
摘要: dbca:创建数据库netca:创建监听程序... 阅读全文
posted @ 2016-09-16 20:43 岳麓丹枫 阅读(164) 评论(0) 推荐(0)
摘要: dbca: 创建数据库netca: 创建监听程序netmgr: 配置监听服务(将数据库服务注册到监听器上)netca 与 netmgr 两步可以直接在 ORACLE_HOME/network/admin 下的 listener.ora 中添加如下代码添加一个监听器LISTENER ... 阅读全文
posted @ 2016-09-16 20:42 岳麓丹枫 阅读(504) 评论(0) 推荐(0)
摘要: 客户端在请求 service 的服务时使用了一个具有相同接口的 Proxy 类。native service 这具体实现这个接口,所以 android 提供了 IInterface 类,其是”base class for Binder interfaces”,所以我们的 IZxTask 类继承它:c... 阅读全文
posted @ 2016-08-25 18:22 岳麓丹枫 阅读(127) 评论(0) 推荐(0)
摘要: 原文地址:http://blog.csdn.net/zhx6044/article/details/47342227 Native Service 其实就是一个 linux 守护进程,提供一些服务,不过由于 android 的进程间通讯使用了 Binder 机制,那么我们就需要按照... 阅读全文
posted @ 2016-08-25 18:21 岳麓丹枫 阅读(762) 评论(0) 推荐(0)
摘要: http://singo107.iteye.com/blog/1175084 数据库事务的隔离级别有4个,由低到高依次为Read uncommitted 、Read committed、Repeatable read 、Serializable ,这四个级别可以逐个解决脏读 、不可重复读 ... 阅读全文
posted @ 2016-08-02 18:28 岳麓丹枫 阅读(119) 评论(0) 推荐(0)
摘要: http://singo107.iteye.com/blog/1175084数据库事务的隔离级别有4个,由低到高依次为Read uncommitted 、Read committed、Repeatable rea... 阅读全文
posted @ 2016-08-02 18:28 岳麓丹枫 阅读(96) 评论(0) 推荐(0)
摘要: public class SeqList{ ... 阅读全文
posted @ 2016-07-21 20:35 岳麓丹枫 阅读(103) 评论(0) 推荐(0)
摘要: public class SeqList{ Object[] data; int maxSize; int length; public SeqList(int maxSize) { this.maxSize = maxSize; ... 阅读全文
posted @ 2016-07-21 20:34 岳麓丹枫 阅读(190) 评论(0) 推荐(0)
摘要: public class LinkHeap{ class Node { T data; Node next; Node(T data) { this.data = data; ... 阅读全文
posted @ 2016-07-21 20:16 岳麓丹枫 阅读(130) 评论(0) 推荐(0)
摘要: public class LinkHeap{... 阅读全文
posted @ 2016-07-21 20:16 岳麓丹枫 阅读(81) 评论(0) 推荐(0)
摘要: public class SeqHeap{ Object[] data; int font; int rear; int maxSize; public SeqHeap(int maxSize) { this.maxSize = ... 阅读全文
posted @ 2016-07-21 19:40 岳麓丹枫 阅读(159) 评论(0) 推荐(0)
摘要: public class SeqHeap{ ... 阅读全文
posted @ 2016-07-21 19:40 岳麓丹枫 阅读(94) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页