Algorithm Priority Queue & HeapByWayne18/08/2023610 views Priority queue 是一個很好用的 data structure。它可以在常數時間內提供最大或最小值。在了解它之前,我們要先了解另一個 data structure 叫 heap。因為 priority queue 常常會用 heap 來實作。 Read More 0 0 0 0
Read More610 views2 minute read AlgorithmPriority Queue & HeapByWayne18/08/2023 Priority queue 是一個很好用的 data structure。它可以在常數時間內提供最大或最小值。在了解它之前,我們要先了解另一個 data structure 叫 heap。因為 priority queue 常常會用 heap 來實作。 Read More 0 0 0 0
Read More595 views2 minute read AlgorithmBinary Search TreeByWayne17/08/2023 二元搜尋樹(Binary search tree, BST)是一種二元樹(binary tree)。它提供了一些有用操作,包含 search、insert、delete、minimum、maximum、successor 和 predecessor。 Read More 0 0 0 0
Read More400 views1 minute read AlgorithmMonotonic StackByWayne13/08/2023 Monotonic stack 是一種 stack,其中裡面的元素的值必須是遞增或是遞減。 Read More 0 0 0 0
Read More337 views1 minute read AlgorithmTrieByWayne13/08/2023 Trie 是一種 k-ary search tree。它可以儲存大量的字串,並且提供有效率的字串搜尋。 Read More 0 0 0 0
Read More583 views1 minute read AlgorithmUnion FindByWayne12/08/2023 Union Find data structure 又稱 disjoint set data structure。它是一個資料結構,用來儲存一堆 disjoint set。它提供兩個操作,一個是用來合併兩個 sets,另一個是用來尋找給定元素的 set。 Read More 0 0 0 0
Read More1.2K views1 minute read AlgorithmDepth First Search (DFS)ByWayne12/08/2023 深度優先搜尋(DFS)演算法是一種圖形搜尋演算法。從給定的一個點開始,它會先探索該點的一個相鄰點。再來,探索該相鄰點的一個相鄰點。這樣子一直探索下去,直到某的點沒有相鄰點時,它就會退回到上一個點,並探索該點的下一個相鄰點。它會一直這樣地探索下去,直到找到結果,或是探索完所有的點。 Read More 0 0 0 0
Read More1.0K views1 minute read AlgorithmBreadth First Search (BFS)ByWayne12/08/2023 廣度優先搜尋(BFS)演算法是一種圖形搜尋演算法。從給定的一個點開始,它會先探索該點所有的相鄰點。再來,依序探索這些相鄰點的相鄰點。這樣子一層一層地探索下去,直到找到結果,或是探索完所有的點。 Read More 0 0 0 0