iT邦幫忙

鐵人檔案

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

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

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

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

圖解 blind 75: Stack - Valid Parentheses

Valid Parentheses Given a string s containing just the characters '(', ')', '{',...

2022-09-07 ‧ 由 json_liang 分享
DAY 8

圖解 blind 75: Binary Search - 策略簡介

Binary Search(二分搜尋法) Binary Search 是一種使用在有序陣列的搜尋演算法。 當給定的資料陣列是有排序過的,就可以透過 Binary...

2022-09-08 ‧ 由 json_liang 分享
DAY 8

圖解 blind 75: Binary Search - Search in Rotated Sorted Array(1/2)

Search in Rotated Sorted Array There is an integer array nums sorted in ascendin...

2022-09-08 ‧ 由 json_liang 分享
DAY 8

圖解 blind 75: Binary Search - Find Minimum in Rotated Sorted Array(2/2)

Find Minimum in Rotated Sorted Array Suppose an array of length n sorted in asce...

2022-09-08 ‧ 由 json_liang 分享
DAY 9

圖解 blind 75: LinkedList - 資料結構簡介

LinkedList - 資料結構簡介 LinkedList(鏈結串列) 是一種線性資料集合結構,但其資料集合順序卻不一定按線性的順序儲存資料。 LinkedL...

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

圖解 blind 75: LinkedList - Merge Two Sorted Lists(1/3)

Merge Two Sorted Lists You are given the heads of two sorted linked lists list1 ...

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

圖解 blind 75: LinkedList - Reverse Linked List(2/3)

Reverse Linked List Given the head of a singly linked list, reverse the list, an...

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

圖解 blind 75: LinkedList - Linked List Cycle(3/3)

Linked List Cycle Given head, the head of a linked list, determine if the linked...

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

圖解 blind 75: LinkedList - Remove Nth Node From End of List(1/3)

Remove Nth Node From End of List Given the head of a linked list, remove the nth...

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

圖解 blind 75: LinkedList - Reorder List(2/3)

Reorder List You are given the head of a singly linked-list. The list can be rep...

2022-09-10 ‧ 由 json_liang 分享