iT邦幫忙

圖解 blind75相關文章
共有 93 則文章
鐵人賽 自我挑戰組 DAY 1

技術 挑戰 blind75: 以圖解方式練習解題- 前導文

圖解 blind 75 總綱 本系列文將會呈獻做圖方式解析 blind 75 題目 何為 blind 75 主要是有人在 blind 這個網站從 leetcod...

鐵人賽 自我挑戰組 DAY 1

技術 圖解 blind 75: Array & HashTable - 資料結構介紹

圖解 blind 75: Array & HashTable 前言 本篇主要是介紹這個類型題目所會用到的演算法及資料結構 以下分別針對 Array 與...

鐵人賽 自我挑戰組 DAY 1

技術 圖解 blind 75: Array & HashTable - two sum (1/3)

two sum Problem Description Given an array of integers nums and an integer targe...

鐵人賽 自我挑戰組 DAY 5

技術 圖解 blind 75: Sliding-Window 策略講解

Sliding-Window 策略講解 Sliding Window 是一種演算法策略,通常用在字串或是陣列資料中。 透過把資料限縮在一定資料範圍之內來達成題目...

鐵人賽 自我挑戰組 DAY 30

技術 挑戰 blind 75: 以圖解方式練習解題 - 總結

總結 從過去這 75 題 leetcode 的解題歷程 其實可以發現 解題最重要的一件事是先理解題目 能夠明白題目的結構知道需求 才能找出符合需求的解法 解法也...

鐵人賽 自我挑戰組 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...

鐵人賽 自我挑戰組 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...

鐵人賽 自我挑戰組 DAY 1

技術 圖解 blind 75: Array & HashTable - Valid Anagram(3/3)

Valid Anagram Given two strings s and t, return true if t is an anagram of s, an...

鐵人賽 自我挑戰組 DAY 11

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

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

鐵人賽 自我挑戰組 DAY 3

技術 圖解 blind 75 : Array & HashTable - Encode and Decode Strings(1/2)

Encode and Decode Strings Design an algorithm to encode a list of strings to a s...

鐵人賽 自我挑戰組 DAY 1

技術 圖解 blind 75: Array & HashTable - contain duplicate (2/3)

contain duplicate Problem Description Given an integer array nums, return true i...

鐵人賽 自我挑戰組 DAY 23

技術 圖解 blind 75: Dynamic Programming - Coin Change(4/4)

Coin Change You are given an integer array coins representing coins of different...

鐵人賽 自我挑戰組 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...

鐵人賽 自我挑戰組 DAY 16

技術 圖解 blind 75: Heap 資料結構簡介

Heap 資料結構簡介 Heap 是一種特別的完全二元樹。樹中的任意節點值與其子代節點值具有一定大小順序關係,這個特性稱作 Heap Property。 其中,...

鐵人賽 自我挑戰組 DAY 27

技術 圖解 blind 75: Intervals - Insert Interval(2/2)

Insert Interval You are given an array of non-overlapping intervals intervals wh...

鐵人賽 自我挑戰組 DAY 30

技術 圖解 blind 75: Bit Manipulation - Reverse Bits(1/3)

Reverse Bits Reverse bits of a given 32 bits unsigned integer. Note: Note that...

鐵人賽 自我挑戰組 DAY 2

技術 圖解 blind 75 : Array & HashTable - Top K Frequent Elements(1/3)

Top K Frequent Elements Problem Description Given an integer array nums and an i...

鐵人賽 自我挑戰組 DAY 14

技術 圖解 blind 75: Tree - Serialize and Deserialize Binary Tree(2/2)

Serialize and Deserialize Binary Tree Serialization is the process of converting...

鐵人賽 自我挑戰組 DAY 3

技術 圖解 blind 75: Array & HashTable - Longest Consecutive Sequence(2/2)

Longest Consecutive Sequence Given an unsorted array of integers nums, return th...

鐵人賽 自我挑戰組 DAY 4

技術 圖解 blind 75 : Two Pointers - 演算法策略講解

Two Pointers 策略 Two Pointer 是一種用來解決問題的演算法策略。 如同其字面上所指,會同時使用兩個指標來對搜尋範圍做限縮。 通常適合用在...

鐵人賽 自我挑戰組 DAY 6

技術 圖解 blind 75 : Sliding Window - Minimum Window Substring(2/2)

Minimum Window Substring Given two strings s and t of lengths m and n respective...

鐵人賽 自我挑戰組 DAY 5

技術 圖解 blind 75: Sliding-Window - Best Time to Buy and Sell Stock(1/2)

Best Time to Buy and Sell Stock You are given an array prices where prices[i] is...

鐵人賽 自我挑戰組 DAY 2

技術 圖解 blind 75 : Array & HashTable - Product of Array Except Self(3/3)

Product of Array Except Self Problem Description Given an integer array nums, re...

鐵人賽 自我挑戰組 DAY 18

技術 圖解 blind 75: Graph - Pacific Atlantic Water Flow(1/3)

Pacific Atlantic Water Flow There is an m x n rectangular island that borders bo...

鐵人賽 自我挑戰組 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...

鐵人賽 自我挑戰組 DAY 2

技術 圖解 blind 75 : Array & HashTable - Group Anagrams(2/3)

Group Anagrams Problem Description Given an array of strings strs, group the ana...

鐵人賽 自我挑戰組 DAY 16

技術 圖解 blind 75: Heap - Find Median from Data Stream

Find Median from Data Stream The median is the middle value in an ordered intege...