摘要: package com.queue;/** * @auther 付强 * @date 2020/2/13 - 13:30 */public class TestMyqueue { public static void main(String[] args) { //创建一个队列 Myqueue my 阅读全文
posted @ 2020-02-13 17:12 1350464730 阅读(167) 评论(0) 推荐(0) 编辑
摘要: package com.queue;/** * @auther 付强 * @date 2020/2/13 - 13:30 */public class Myqueue { int []elements; public Myqueue(){ elements=new int[0]; } //入队 pu 阅读全文
posted @ 2020-02-13 17:10 1350464730 阅读(270) 评论(0) 推荐(0) 编辑
摘要: package com.stack;/** * @auther 付强 * @date 2020/2/13 - 13:08 */public class TestMystack { public static void main(String[] args) { //先创建一个栈 Mystack my 阅读全文
posted @ 2020-02-13 13:26 1350464730 阅读(241) 评论(0) 推荐(0) 编辑
摘要: package com.stack;/** * @auther 付强 * @date 2020/2/13 - 12:45 */public class Mystack { //栈的底层我们使用数组来存储数据 int[] elements; public Mystack(){ elements=new 阅读全文
posted @ 2020-02-13 13:24 1350464730 阅读(544) 评论(0) 推荐(0) 编辑
摘要: package com.fu;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/13 - 10:27 */public class myArray1 { //用于存储数据的数组 private int[] elements; public 阅读全文
posted @ 2020-02-13 12:16 1350464730 阅读(144) 评论(0) 推荐(0) 编辑