摘要:
42. 接雨水(单调递减栈) class Solution { public int trap(int[] height) { int res = 0; Stack<Integer> leftWallStack = new Stack(); int len = height.length; left 阅读全文
posted @ 2023-05-13 23:25
archaique
阅读(63)
评论(0)
推荐(0)
2023年5月13日