2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 758
二元堆積樹(Heap)的筆記 學習影片 https://www.youtube.com/watch?v=klbGg8dmYTM 基本定義 Heap(堆積)...
Problem : You are given an n x n 2D matrix representing an image, rotate the ima...
原文題目Given head, the head of a linked list, determine if the linked list has a cy...
這題要把給定的二元樹扁平化(flatten),讓它像一個單向鏈表,主要是讓樹的右指標指向鏈表中的下個節點,左指標設為成null,這個“鏈表”須遵依照原來樹的先序...
Day 22
2024-10-06
111
0
原文題目 You are given an n x n 2D matrix representing an image, rotate the image by...
解題程式碼 var SmallestInfiniteSet = function () { this.minHeap = new MinPriorityQu...