363. Trapping Rain Water

 public class Solution {
/**
* @param heights: a list of integers
* @return: a integer
*/
public int trapRainWater(int[] heights) {
// write your code here
if (heights == null || heights.length == 0) {
return 0;
} int start = 0;
int end = heights.length - 1;
int maxLeft = Integer.MIN_VALUE;
int maxRight = Integer.MIN_VALUE;
int sum = 0;
while (start < end) {
maxLeft = heights[start] > maxLeft ? heights[start] : maxLeft;
maxRight = heights[end] > maxRight ? heights[end] : maxRight;
if (maxLeft < maxRight) {
sum += maxLeft - heights[start];
start++;
} else {
sum += maxRight - heights[end];
end--;
}
}
return sum;
}
}

364. Trapping Rain Water II

 class Point {
int x;
int y;
int height; public Point(int x, int y, int height) {
this.x = x;
this.y = y;
this.height = height;
}
} public class Solution {
/**
* @param heights: a matrix of integers
* @return: an integer
*/ int[] dx = {0, 1, 0, -1};
int[] dy = {1, 0, -1, 0}; public int trapRainWater(int[][] heights) {
// write your code here
if (heights == null || heights.length == 0 || heights[0].length == 0) {
return 0;
}
int r = heights.length;
int c = heights[0].length;
boolean[][] visited = new boolean[r][c]; Comparator<Point> minComparator = new Comparator<Point>() {
@Override
public int compare(Point o1, Point o2) {
return o1.height - o2.height;
}
}; PriorityQueue<Point> minHeap = new PriorityQueue<>(minComparator); for (int i = 0; i < r; i++) {
minHeap.add(new Point(i, 0, heights[i][0]));
visited[i][0] = true;
minHeap.add(new Point(i, c - 1, heights[i][c - 1]));
visited[i][c - 1] = true;
} for (int j = 0; j < c; j++) {
minHeap.add(new Point(0, j, heights[0][j]));
visited[0][j] = true;
minHeap.add(new Point(r - 1, j, heights[r - 1][j]));
visited[r - 1][j] = true;
} int sum = 0;
while (!minHeap.isEmpty()) {
Point point = minHeap.poll(); for (int i = 0; i < 4; i++) {
int nx = point.x + dx[i];
int ny = point.y + dy[i];
if (!isValid(nx, ny, heights, visited)) {
continue;
} visited[nx][ny] = true;
minHeap.add(new Point(nx, ny, Math.max(heights[nx][ny], point.height)));
sum += Math.max(heights[nx][ny], point.height) - heights[nx][ny];
}
}
return sum; } public boolean isValid(int x, int y, int[][] heights, boolean[][] visited) {
if (x < 0 || x > heights.length - 1 || y < 0 || y > heights[0].length - 1) {
return false;
}
if (visited[x][y]) {
return false;
}
return true;
}
}

360. Sliding Window Median 具体思路见  81. Find Median from Data Stream

 public class Solution {
/**
* @param nums: A list of integers
* @param k: An integer
* @return: The median of the element inside the window at each moving
*/
private PriorityQueue<Integer> minHeap;
private PriorityQueue<Integer> maxHeap;
private int maxSize = 0;
private int minSize = 0; public List<Integer> medianSlidingWindow(int[] nums, int k) {
// write your code here
if (nums == null || nums.length < k || k <= 0) {
return new ArrayList<>();
} minHeap = new PriorityQueue<>();
maxHeap = new PriorityQueue<>(new Comparator<Integer>() {
@Override
public int compare(Integer o1, Integer o2) {
return o2.compareTo(o1);
}
});
List<Integer> res = new ArrayList<>(); for (int i = 0; i < k; i++) {
addNumber(nums[i]);
}
res.add(getMedian());
for (int j = k; j < nums.length; j++) {
slideByWindow(nums[j], nums[j - k]);
res.add(getMedian());
}
return res;
} public void addNumber(int num) {
maxHeap.add(num);
maxSize++;
if (maxSize - minSize <= 1) {
if (minHeap.isEmpty()) {
return;
} if (maxHeap.peek() > minHeap.peek()) {
int maxTemp = maxHeap.poll();
int minTemp = minHeap.poll();
minHeap.add(maxTemp);
maxHeap.add(minTemp);
}
return;
} minHeap.add(maxHeap.poll());
minSize++;
maxSize--;
} public int getMedian() {
return maxHeap.peek();
} public void slideByWindow(int toAdd, int toRemove) {
if (toRemove <= getMedian()) {
maxHeap.remove(toRemove);
maxSize--;
} else {
minHeap.remove(toRemove);
minSize--;
}
addNumber(toAdd);
}
}

Heap — 20181120的更多相关文章

  1. java head space/ java.lang.OutOfMemoryError: Java heap space内存溢出

    上一篇JMX/JConsole调试本地还可以在centos6.5 服务器上进行监控有个问题端口只开放22那么设置的9998端口 你怎么都连不上怎么监控?(如果大神知道还望指点,个人见解) 线上项目出现 ...

  2. Java 堆内存与栈内存异同(Java Heap Memory vs Stack Memory Difference)

    --reference Java Heap Memory vs Stack Memory Difference 在数据结构中,堆和栈可以说是两种最基础的数据结构,而Java中的栈内存空间和堆内存空间有 ...

  3. [数据结构]——堆(Heap)、堆排序和TopK

    堆(heap),是一种特殊的数据结构.之所以特殊,因为堆的形象化是一个棵完全二叉树,并且满足任意节点始终不大于(或者不小于)左右子节点(有别于二叉搜索树Binary Search Tree).其中,前 ...

  4. Windbg Extension NetExt 使用指南 【3】 ---- 挖掘你想要的数据 Managed Heap

    摘要 : NetExt中有两个比较常用的命令可以用来分析heap上面的对象. 一个是!wheap, 另外一个是!windex. !wheap 这个命令可以用于打印出heap structure信息. ...

  5. JAVA Shallow heap & Retained heap

    最近在研究内存泄漏的问题,在使用MAT工具中发现了Shallow heap & Retained heap,不懂. 然后在网上找了一些资料. Shallow Size 对象自身占用的内存大小, ...

  6. 笔记:程序内存管理 .bss .data .rodata .text stack heap

    1.未初始化的全局变量(.bss段) bss段用来存放 没有被初始化 和 已经被初始化为0 的全局变量.如下例代码: #include<stdio.h> int bss_array[102 ...

  7. STL heap usage

    简介 heap有查找时间复杂度O(1),查找.插入.删除时间复杂度为O(logN)的特性,STL中heap相关的操作如下: make_heap() push_heap() pop_heap() sor ...

  8. Nodemanager Out of heap memory[fix bug全过程]

    问题: 自己写了一个yarn上的application,发现nodemanager过段时间,会out of memory退出,把nodemanager的heap memory从1G增大到2G也是无法避 ...

  9. Git使用出错:Couldn‘t reserve space for cygwin‘s heap, Win32

    今天使用Git在命令行下更新代码遇到了问题,起初觉得是自己安装某软件导致冲突,从网上搜索了一下找到类似问题,成功解决问题. 错误信息如下: E:\storm-sql>git pull origi ...

随机推荐

  1. hibernate mapping文件中 xmlns会导致linq to xml 查询不到对应的节点

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  2. sql语句in超过1000时的写法

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  3. VMWare、Ubuntu Server 18.04 共享文件夹

    背景:VMWare选项中配置了共享文件夹,装完Ubuntu Server 18.04在 /mnt/下都没有 hgfs文件夹,更别提共享文件夹了 参考:Ubuntu16.04版安装VMwareTools ...

  4. MVC值提供组件ValueProvider的继承关系

    MVC请求过程中中各组件调用顺序:值提供组件(IValueProvider)->模型绑定组件(IModelBinder)->模型验证组件 值提供组件接口 public interface ...

  5. [转]TimeQuest之delay_fall clock_fall傻傻分不清楚

    这篇我想分享一个之前在用TimeQuest约束双边沿模块的input delay时犯得一个错误,有人看了可能会觉得傻傻的,什么眼神,falling delay和 falling clk怎么会分不清呢, ...

  6. unity 大游戏使用什么框架

    关于Unity的架构有如下几种常用的方式.1.EmptyGO在Hierarchy上创建一个空的GameObject,然后挂上所有与GameObject无关的逻辑控制的脚本.使用GameObject.F ...

  7. ORCHARD学习教程-介绍

    ORCHARD 是什么? Orchard 是由微软公司创建,基于 ASP.NET MVC 技术的免费开源内容管理系统: 可用于建设博客.新闻门户.企业门户.行业网站门户等各种网站 简单易用的后台界面 ...

  8. Eclipse操作技巧记录

    工欲善其事,必先利其器.记录下自己使用的eclipse操作技巧 1.eclipse设置自动提示 window->preference->java->editor->conten ...

  9. .netcore2.0 Startup 全局配置文件小技巧

  10. 学习使用MS SQL Server游标(CURSOR)

    说实的,使用MS SQL Server这样久,游标一直没有使用过.以前实现相似的功能,都是使用WHILE循环加临时表来实现.刚才有参考网上示例练习写了一下.了解到游标概念与语法. 下面代码示例中,先是 ...