摘要: public class SeqList{ ... 阅读全文
posted @ 2016-07-21 20:35 岳麓丹枫 阅读(116) 评论(0) 推荐(0)
摘要: public class SeqList{ Object[] data; int maxSize; int length; public SeqList(int maxSize) { this.maxSize = maxSize; ... 阅读全文
posted @ 2016-07-21 20:34 岳麓丹枫 阅读(212) 评论(0) 推荐(0)
摘要: public class LinkHeap{ class Node { T data; Node next; Node(T data) { this.data = data; ... 阅读全文
posted @ 2016-07-21 20:16 岳麓丹枫 阅读(141) 评论(0) 推荐(0)
摘要: public class LinkHeap{... 阅读全文
posted @ 2016-07-21 20:16 岳麓丹枫 阅读(86) 评论(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 岳麓丹枫 阅读(173) 评论(0) 推荐(0)
摘要: public class SeqHeap{ ... 阅读全文
posted @ 2016-07-21 19:40 岳麓丹枫 阅读(99) 评论(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 岳麓丹枫 阅读(151) 评论(0) 推荐(0)
摘要: public class Sort{ ... 阅读全文
posted @ 2016-07-21 19:22 岳麓丹枫 阅读(100) 评论(0) 推荐(0)
摘要: package com.lxm.customDataStructure;public class LinkStack{ class Node{ T data; Node next; Node(T data) { ... 阅读全文
posted @ 2016-07-21 19:15 岳麓丹枫 阅读(125) 评论(0) 推荐(0)
摘要: package com.lxm.custom... 阅读全文
posted @ 2016-07-21 19:15 岳麓丹枫 阅读(109) 评论(0) 推荐(0)
摘要: public class MyStack{ Object[] data; int top; int maxSize; public MyStack(int maxSize) { this.maxSize = maxSize; ... 阅读全文
posted @ 2016-07-21 18:26 岳麓丹枫 阅读(165) 评论(0) 推荐(0)
摘要: public class MyStack{ ... 阅读全文
posted @ 2016-07-21 18:26 岳麓丹枫 阅读(101) 评论(0) 推荐(0)