西维蜀黍的OJ Blog

🐒 Software engineer | 📷 Photographer | 👹 Urban explorer

[Note] Interval

解析 56. Merge Intervals # approach 1 - elegent way (neetcode) # - time: O(nlogn) # - space: O(1) def merge(self, intervals: List[List[int]]) -> List[List[int]]: intervals.sort(key=lambda pair: pair[0]) res = [intervals[0]] for i in range(1, len(intervals)): interval = intervals[i] lastEnd = res[-1][1] if lastEnd >= interval[0]: # has overlap between the current interval and the previous added interval res[-1][1] = max(lastEnd, interval[1]) # merge else: # not has overlap   ...


[Note] Matrix

题目 54. Spiral Matrix 解析 54. Spiral Matrix # - time: O(m*n) # - space: O(1) def spiralOrder(self, matrix: List[List[int]]) -> List[int]: # current valid search range: col: [left, right], row: [top, bottom] # this means that "while left <= right and top <= bottom" left, right = 0, len(matrix[0]) - 1 top, bottom = 0, len(matrix) - 1 res = [] while left <= right and top   ...


[Notes] Backtracking(回溯)

  ...


[Notes] Binary

  ...


[Notes] Binary Heap

Knowledge

Refer to https://swsmile.info/post/data-structure-heap/

  ...