Problem: 2581. 统计可能的树根数目 文章目录 思路复杂度Code 思路
👨🏫 灵神
复杂度
时间复杂度: O ( n m ) O(nm) O(nm)
空间复杂度: O ( n m ) O(nm) O(nm)
Code
class Solution {List<Integer>[] g;// 邻接表Set<Long> se…
一:搭建kafka。
1. 三台机器执行以下命令。
cd /opt
wget wget https://dlcdn.apache.org/kafka/3.6.1/kafka_2.13-3.6.1.tgz
tar zxvf kafka_2.13-3.6.1.tgz
cd kafka_2.13-3.6.1/config
vim server.properties修改以下俩内容 1.三台机器分别给予各自的broker_id…