上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页
摘要: 方法:定义两个栈分别为 A,B;入队void... 阅读全文
posted @ 2016-09-16 21:44 岳麓丹枫 阅读(97) 评论(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 岳麓丹枫 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 方法一 void swap(int &a,... 阅读全文
posted @ 2016-09-16 21:21 岳麓丹枫 阅读(95) 评论(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 岳麓丹枫 阅读(154) 评论(0) 推荐(0) 编辑
摘要: dbca:创建数据库netca:创建监听程序... 阅读全文
posted @ 2016-09-16 20:43 岳麓丹枫 阅读(140) 评论(0) 推荐(0) 编辑
摘要: dbca: 创建数据库netca: 创建监听程序netmgr: 配置监听服务(将数据库服务注册到监听器上)netca 与 netmgr 两步可以直接在 ORACLE_HOME/network/admin 下的 listener.ora 中添加如下代码添加一个监听器LISTENER ... 阅读全文
posted @ 2016-09-16 20:42 岳麓丹枫 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 客户端在请求 service 的服务时使用了一个具有相同接口的 Proxy 类。native service 这具体实现这个接口,所以 android 提供了 IInterface 类,其是”base class for Binder interfaces”,所以我们的 IZxTask 类继承它:c... 阅读全文
posted @ 2016-08-25 18:22 岳麓丹枫 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://blog.csdn.net/zhx6044/article/details/47342227 Native Service 其实就是一个 linux 守护进程,提供一些服务,不过由于 android 的进程间通讯使用了 Binder 机制,那么我们就需要按照... 阅读全文
posted @ 2016-08-25 18:21 岳麓丹枫 阅读(723) 评论(0) 推荐(0) 编辑
摘要: http://singo107.iteye.com/blog/1175084 数据库事务的隔离级别有4个,由低到高依次为Read uncommitted 、Read committed、Repeatable read 、Serializable ,这四个级别可以逐个解决脏读 、不可重复读 ... 阅读全文
posted @ 2016-08-02 18:28 岳麓丹枫 阅读(109) 评论(0) 推荐(0) 编辑
摘要: http://singo107.iteye.com/blog/1175084数据库事务的隔离级别有4个,由低到高依次为Read uncommitted 、Read committed、Repeatable rea... 阅读全文
posted @ 2016-08-02 18:28 岳麓丹枫 阅读(91) 评论(0) 推荐(0) 编辑
摘要: public class SeqList{ ... 阅读全文
posted @ 2016-07-21 20:35 岳麓丹枫 阅读(99) 评论(0) 推荐(0) 编辑
摘要: public class SeqList{ Object[] data; int maxSize; int length; public SeqList(int maxSize) { this.maxSize = maxSize; ... 阅读全文
posted @ 2016-07-21 20:34 岳麓丹枫 阅读(179) 评论(0) 推荐(0) 编辑
摘要: public class LinkHeap{ class Node { T data; Node next; Node(T data) { this.data = data; ... 阅读全文
posted @ 2016-07-21 20:16 岳麓丹枫 阅读(123) 评论(0) 推荐(0) 编辑
摘要: public class LinkHeap{... 阅读全文
posted @ 2016-07-21 20:16 岳麓丹枫 阅读(75) 评论(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 岳麓丹枫 阅读(151) 评论(0) 推荐(0) 编辑
摘要: public class SeqHeap{ ... 阅读全文
posted @ 2016-07-21 19:40 岳麓丹枫 阅读(86) 评论(0) 推荐(0) 编辑
摘要: public class Sort{ ... 阅读全文
posted @ 2016-07-21 19:22 岳麓丹枫 阅读(82) 评论(0) 推荐(0) 编辑
摘要: public class Sort{ public static void main(String[] args) { int[] data = {49,38,65,97,76,13,27,49}; int[] res = data; ... 阅读全文
posted @ 2016-07-21 19:22 岳麓丹枫 阅读(119) 评论(0) 推荐(0) 编辑
摘要: package com.lxm.customDataStructure;public class LinkStack{ class Node{ T data; Node next; Node(T data) { ... 阅读全文
posted @ 2016-07-21 19:15 岳麓丹枫 阅读(91) 评论(0) 推荐(0) 编辑
摘要: package com.lxm.custom... 阅读全文
posted @ 2016-07-21 19:15 岳麓丹枫 阅读(93) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页