SunnyX
SunnyX
全部文章
题解
归档
标签
去牛客网
登录
/
注册
SunnyX的博客
全部文章
/ 题解
(共3篇)
包含min函数的栈
import java.util.Stack; public class Solution { Stack<Integer> stack = new Stack<Integer>(); int min; ...
栈
2021-03-31
0
538
从上到下打印二叉树
//解题思路: //其实就是一个广度优先遍历而已 ArrayList<Integer> result = new ArrayList<>(); public ArrayList<Integer> PrintFromTopToBottom(T...
树
栈
2021-03-25
0
449
按之字形顺序打印二叉树
//解题思路:其实就是二叉树的层级遍历,不过是在遍历的时候,需要将偶数层的节点逆序。 //关键点:每次只处理上次在queue中剩余的节点,这是上一层的所有节点。 // 处理完后刚好将下一层的所有节点(包含null)又全部放了进去。 public ArrayList...
树
栈
2020-02-21
20
1447