waigo
waigo
全部文章
题解
归档
标签
去牛客网
登录
/
注册
waigo的博客
全部文章
/ 题解
(共42篇)
题解 | #按之字形顺序打印二叉树#
两种方式的层序遍历完成 第一种:使用两个变量curLevelLast和nextLevelLast来知晓层的转变,每次在当前层结束之后就进行答案收集 public ArrayList<ArrayList<Integer> > Print(TreeNode pRoot) { ...
栈
队列
BFS
2021-08-13
0
383
题解 | #设计LRU缓存结构#
两种解题方式 一、先整个题目的解答架构 public int[] LRU (int[][] operators, int k) { ArrayList<Integer> res = new ArrayList<>(); if(opera...
2021-08-12
1
395
首页
上一页
1
2
3
4
5
下一页
末页