摘要: 有关ArrayList参见菜鸟教程 https://www.runoob.com/java/java-arraylist.html 代码不敲了 很简单 这个也是 太水了 不敲了 阅读全文
posted @ 2020-12-20 12:09 然终酒肆 阅读(85) 评论(0) 推荐(0)
摘要: 没空敲了 代码是别人的轮子 稍微改了改 把单链表全实现了 package Test; public class Linked <T>{ private class Node{ private T t; private Node next; public Node(T t,Node next){ th 阅读全文
posted @ 2020-12-20 10:30 然终酒肆 阅读(74) 评论(0) 推荐(0)
摘要: package Test; public class test0 { static final int SLOW = 1;//三个名为SLOW,MEDIUM,FAST而值为1,2,3的常量,表示风扇的速度。 static final int MEDIUM = 2; static final int 阅读全文
posted @ 2020-12-20 10:16 然终酒肆 阅读(109) 评论(0) 推荐(0)
摘要: package homwk; import java.util.Scanner; public class hmwk7 { public static boolean judge(int[][] b){ for(int i=0;i<b.length;i++){ for(int j=0;j<b[i]. 阅读全文
posted @ 2020-12-20 10:09 然终酒肆 阅读(74) 评论(0) 推荐(0)