iT邦幫忙

鐵人檔案

2022 iThome 鐵人賽
回列表
自我挑戰組

挑戰 blind 75: 以圖解方式練習解題 系列

這次想透過練習 blind 75 ,來整理過去學過的演算法與資料結構
主要會有幾個方向:
1. 圖解的方式來做練習。
2. 分析解題其中的時間與空間複雜度。
3. 預計會使用 golang 作為解題的語言。
4. 寫下卡關遇到的難題。

鐵人鍊成 | 共 93 篇文章 | 21 人訂閱 訂閱系列文 RSS系列文 團隊E04
DAY 10

圖解 blind 75: LinkdedList - Merge k Sorted Lists(3/3)

Merge k Sorted Lists You are given an array of k linked-lists lists, each linked...

2022-09-10 ‧ 由 json_liang 分享
DAY 11

圖解 blind 75: Tree 資料結構解析

Tree 資料結構解析 Tree Tree(樹) 是一種非線性階層式排列資料結構,因為具有樹狀結構,看起來像一個倒過來生長的樹。 樹狀結構的基本資料存儲單位是節...

2022-09-11 ‧ 由 json_liang 分享
DAY 11

圖解 blind 75: Tree - Same Tree (1/3)

Same Tree Given the roots of two binary trees p and q, write a function to check...

2022-09-11 ‧ 由 json_liang 分享
DAY 11

圖解 blind 75: Tree - Subtree of Another Tree(2/3)

Subtree of Another Tree Given the roots of two binary trees root and subRoot, re...

2022-09-11 ‧ 由 json_liang 分享
DAY 11

圖解 blind 75: Tree - Invert Binary Tree(3/3)

Invert Binary Tree Given the root of a binary tree, invert the tree, and return ...

2022-09-11 ‧ 由 json_liang 分享
DAY 12

圖解 blind 75: Tree - Maximum Depth of Binary Tree(1/3)

Maximum Depth of Binary Tree Given the root of a binary tree, return its maximum...

2022-09-12 ‧ 由 json_liang 分享
DAY 12

圖解 blind 75: Tree - Lowest Common Ancestor of a Binary Search Tree(2/3)

Lowest Common Ancestor of a Binary Search Tree Given a binary search tree (BST),...

2022-09-12 ‧ 由 json_liang 分享
DAY 12

圖解 blind 75: Tree - Kth Smallest Element in a BST(3/3)

Kth Smallest Element in a BST Given the root of a binary search tree, and an int...

2022-09-12 ‧ 由 json_liang 分享
DAY 13

圖解 blind 75: Tree - Validate Binary Search Tree(1/3)

Validate Binary Search Tree Given the root of a binary tree, determine if it is...

2022-09-13 ‧ 由 json_liang 分享
DAY 13

圖解 blind 75: Tree - Binary Tree Level Order Traversal(2/3)

Binary Tree Level Order Traversal Given the rootof a binary tree, return the lev...

2022-09-13 ‧ 由 json_liang 分享