摘要:
单链表: /** * @author doiy * @date 2021-5-7 14:57 * * 单链表 MyNode就代表一个节点 */ public class MyNode { // 节点内容 // 下一个节点 int date; MyNode next; public MyNode(in 阅读全文
摘要:
import java.util.Arrays; /** * @author doiy * @date 2021-5-14 */ public class BubbleSort { public static void main(String[] args) { int[] arr=new int[ 阅读全文