PakhoZheng
PakhoZheng
全部文章
LeetCode刷题
Java基础(13)
Mysql(1)
ngixn(1)
Redis(14)
分布式系统(2)
计算机网络(2)
设计模式(1)
归档
标签
去牛客网
登录
/
注册
猫卷的Java基地
干就完事了~
全部文章
/ LeetCode刷题
(共1篇)
LeetCode刷题:430. 扁平化多级双向链表(中等)
/* // Definition for a Node. class Node { public int val; public Node prev; public Node next; public Node child; }; */ class Solution...
深度优先搜索
递归
2021-10-02
0
342