摘要: ```java /** * 带头结点的单链表 */ public class LinkListDemo { //获取节点的个数,不统计头节点 public static int getLength(LinkList linkList){ Node head = linkList.getHead(); int l = 0; Node c = head.next; while (c!=null){ l 阅读全文
posted @ 2019-10-07 16:34 fly_bk 阅读(206) 评论(0) 推荐(0) 编辑
摘要: ```java / 环形队列 / public class ArrayQueueDemo { public static void main(String[] args){ ArrayQueue queue = new ArrayQueue(3); queue.add(1); queue.show( 阅读全文
posted @ 2019-10-07 14:30 fly_bk 阅读(160) 评论(0) 推荐(0) 编辑
摘要: ```java public class SparseArray { //输出二维数组 public static void consoleArr(int[][] arr){ for (int[] ints : arr) { for (int anInt : ints) { System.out.p 阅读全文
posted @ 2019-10-07 10:21 fly_bk 阅读(572) 评论(0) 推荐(0) 编辑