Docker
Some common used docker commands.
Some common used docker commands.
From bruce force, to a perfect solution.
From local optimum to a whole optinum. According to experience.
There are several similar data structure.
dic = {}
in Pythondic[key] = value
se = set()
in Pythonse.add(item)
se.remove(item)
The time complexity of search in HashTable’s key or HashSet is O(1)
collections.Counter(list)
can count the element in the list and generate a dictionaryfor key, value in dic.items()
can iterate the key and value at the same timesorted(dic.keys())
is sorting the keysdic.get(key, value)
return the dic[key] if the key in dic, otherwise return value you giveNo.1 Two Sum
1 | dic = {} |
No.138 Copy List with Random Pointer
No.202 Happy Number
No.136 Single Number
1 | se = set() |
No.217 Contains Duplicate
No.3 Longest Substring Without Repearting Characters
No.49 Group Anagrams
1 | dic = {} |
No.347 Top K Frequent Elements
Swap the key and values
1 | form = dict(collections.Counter(nums)) |
No.387 First Unique Character in a String
No.242 Valid Anagram
No.350 Intersection of Two Arrays II
No.36 Valid Sudoku
No.454 4Sum II
1 | class ListNode: |
No.2 - Add Two Numbers
Two pointers.
1 | def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode: |
No.21 - Merge Two Sorted Lists
Several pointers.
No.23 - Merge k Sorted Lists
Priority queue
No.328 - Odd Even Linked List
No.237 - Delete Node in a Linked List
1 | def deleteNode(self, node): |
No.138 - Copy List with Random Pointer
Deep Copy
No.206 - Reverse Linked List
No.234 - Palindrome Linked List
No.19 - Remove Nth Node From End of List
With List
No.206 - Reverse Linked List
Stack
No.141 - LinkeList List Cycle
HashTable
1 | def hasCycle(self, head): |
No.160 - Intersection of Two Linked Lists
HashTable
No.138 - Copy List with Random Pointer
HashTable
Queue and stack are just like a store. You just want to put and pick the items one by one. The time complexity of put and pick is O(1)
Python makes queue and stack easier because we can use list to finish the functions of queue and stack.
1 | my_queue = [] |
No.94 - Binary Tree Inorder Traversal
No.103 - Binary Tree Zigzag Level Order Traversal
No.20 - Valid Parentheses
No.42 - Trapping Rain Water
To be continued…
There are 7 main sorting algorithm, which are also connected with other conceptions. Will be finished in the future.
$O(n^2)$
$O(nlog(n))$
$O(n^2)$
$O(nlog(n))$
$O(n^2)$
$O(nlog(n))$
$O(nlog(n))$
Fenwick tree is also called Binary Indexed Tree. This kind of data structure can do the calculation of sum from 0 to ith of a list very efficiently.
It can also be used to calculate the frequency
. Below is a code used to calculate the number of values from 0 to i.
1 | class fenwickTree: |
Relevant application is in Leetcode No.315.
Heap is a useful data structure which can store the elements in order. In Python, there is a built in heap library called Heapq.
No.253 - Meeting Room
Decrease the time from $O(n)$ to $O(log(n))$
No.4 Median of Two Sorted Arrays
This exercise need we use binary search to find the proper value.
If an element is the majority element(appears more than n/2 times), it should be the majority element in the left half sequence or in the right sequence, otherwise it cannot be the majority element.
Binary sort.
Merge two in-order sequence to a whole sequence. The best time is $O(nlog(n))$
No.23 Merge k Sorted Lists
[1] https://blog.csdn.net/xlinsist/article/details/79198842
[2] https://blog.csdn.net/qq_29793171/article/details/80057088
Sometimes normal recursive method will cost a lot of time and not very efficient. In these cases, the DP(Dynamic Programming) can be a good choice. The key of DP is to record the previous solutions.
If a problem has two featrues:
There are two main ways to do DP. The bottom-up is the most common DP method.
Establish a memory data structure(like a list) to store the previous values, avoiding the repeat calculation on that value.
Iterate from the bottom. This is better than the previous one because there is no recursive thus no extra cost.
I felt DP is like a 2-demensional array, which can be reduced to a 1-D array. Usually the row i
means the action at step i
; the column j
means a similar result to the original question.
1 | dp = [[.. for i in range(m)] for j in range(n)] # Create |
dp[i] means subarray s[:i] and you must use s[i-1], return max(dp)
No.53 - Max sum subarray
1 | if dp[i - 1] > 0: |
No.300 - Longest Increasing Subsequence
No.152 - Maximum Product Subarray
dp1 contains the max product; dp2 contains the min product
dp[i] means s[:i], return dp[len(s)]
No.139 - Word Break
No.91 - Decode Ways
No.70 - Climbing Stairs
No.279 - Perfect Squares
No.62 - Unique Paths
The problem can be described as p[i, j]
No.5 - Longest Palindromic Substring
dp[i][j] means wether s[i: j + 1] is a palindromic substring
1 | for i in range(len(s)): |
1 | # This function will recursively check the left and right value of a previous palindromic string |
No.10 - Two string matching with special character
1 | if j + 1 == '*': |
No.44 - Wildcard Matching
No.322 - Change Coin
1 | for coin in coins: |
The problem can be described as a decision problem at step i
No.198 - House Robber
1 | dp[i] = max(dp[i-1], dp[i-2] + nums[i-1]) |
恭喜宝贝儿拿到微软的奥佛!!!!!
牛逼!!!!!