1、B站视频链接:F06 字典树(Trie)_哔哩哔哩_bilibili
题目链接:【模板】字典树 - 洛谷 #include <bits/stdc.h>
using namespace std;
const int N100010;
int n;
char s[N];
int ch[N][26];//ch[0][2]1表示0号节点通过c边走到了节点1
int cnt[…
目录 场景:
open Type
open Resource
open type in Hierachy 场景: 在项目中想要研究底层代码,经常要用eclipse看依赖jar包的类,比如spring的源码中AbstractApplicationContext类CTLSHIFTT用的少,经常用的CTLSHIR…
线程的同步
场景1:两个线程同时访问一个变量,一个线程自增,一个线程自减
public class thread11 {public static void main(String[] args) throws InterruptedException {Thread thread1 new AddThread();Thread thread2 new DecThread(…