iT邦幫忙

圖解 blind75相關文章
共有 93 則文章
鐵人賽 自我挑戰組 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...

鐵人賽 自我挑戰組 DAY 11

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

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

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

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

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

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

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

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

鐵人賽 自我挑戰組 DAY 9

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

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

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

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

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

鐵人賽 自我挑戰組 DAY 7

技術 圖解 blind 75: Stack - Valid Parentheses

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

鐵人賽 自我挑戰組 DAY 7

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

Stack(堆疊) Stack 是種處理資料流的資料結構。 當資料流處理時,具備後進先出這樣的順序時。就可以使用 Stack。 著名題目河內塔(Hanoi To...

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

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

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

鐵人賽 自我挑戰組 DAY 4

技術 圖解 blind 75 : Two Pointers - Container With Most Water(3/3)

Container With Most Water You are given an integer array height of length n. The...

鐵人賽 自我挑戰組 DAY 4

技術 圖解 blind 75 : Two Pointers - 3Sum(2/3)

3Sum Given an integer array nums, return all the triplets [nums[i], nums[j], num...

鐵人賽 自我挑戰組 DAY 4

技術 圖解 blind 75 : Two Pointers - Valid Palindrome(1/3)

Valid Palindrome A phrase is a palindrome if, after converting all uppercase let...

鐵人賽 自我挑戰組 DAY 4

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

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

鐵人賽 自我挑戰組 DAY 3

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

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

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

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

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

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

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

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