摘要: class MyLinkedList { int size=0; class Node{ int val; Node next; Node prev; Node(int val,Node next,Node prev){ this.val=val; this.next=next; this.prev 阅读全文
posted @ 2022-09-23 11:54 Kotonoha 阅读(36) 评论(0) 推荐(0)
摘要: //1 class Solution { int cnt=0; public boolean canFormArray(int[] arr, int[][] pieces) { return dfs(0,arr,pieces); } boolean dfs(int idx,int[] arr,int 阅读全文
posted @ 2022-09-22 16:23 Kotonoha 阅读(29) 评论(0) 推荐(0)
摘要: 搭建服务器所需要的开发环境和运行环境 阅读全文
posted @ 2021-02-03 09:21 Kotonoha 阅读(440) 评论(0) 推荐(0)
摘要: 三角形最小路径和 阅读全文
posted @ 2020-07-14 17:23 Kotonoha 阅读(156) 评论(1) 推荐(1)
摘要: 线段树+树状数组 阅读全文
posted @ 2020-07-11 14:50 Kotonoha 阅读(193) 评论(0) 推荐(1)
摘要: 字典树 阅读全文
posted @ 2020-07-09 17:18 Kotonoha 阅读(152) 评论(0) 推荐(0)
摘要: KMP代码加注释 阅读全文
posted @ 2020-05-29 22:30 Kotonoha 阅读(134) 评论(1) 推荐(1)