218 The Skyline Problem
https://leetcode.com/problems/the-skyline-problem/
solution
使用优先队列储存每个建筑物的高度和右端
时间复杂度:O() 空间复杂度:O()
tree map
扫描线
Last updated
https://leetcode.com/problems/the-skyline-problem/
使用优先队列储存每个建筑物的高度和右端
时间复杂度:O() 空间复杂度:O()
tree map
扫描线
Last updated