摘要: class LRU{ static class Node{ public int key; public int val; public Node next; public Node prev; public Node(int k,int v){ this.key = k; this.v = v; 阅读全文
posted @ 2021-04-26 11:47 BOTAK 阅读(55) 评论(0) 推荐(0) 编辑
摘要: /** 归并排序 */ class Solution{ // static int count = 0; public static void main(String[] args) { int[] nums = new int[]{7,3,2,6,0,1,5,4}; merge(nums,0,nu 阅读全文
posted @ 2021-04-26 11:45 BOTAK 阅读(30) 评论(0) 推荐(0) 编辑