Trust region policy optimization algorithm. Step1: Derive the policy improvement The policy improvement from old […]
Tech
Posted on:
[Algo] Tree Algorithms & Tree Query
Tree: A tree is a completed, acyclic graph that consists of n nodes and n-1 […]
Tech
Posted on:
[Algo] Greedy Algorithms
Incrementally construct the solution by optimizing some intermediate goal. When the solution is constructed completely, […]
Tech
Posted on:
[Algo] Complete Search
Generate all possible solutions and check what solutions do we want Traverse all Subsets Traverse […]
Tech
Posted on:
[Algo] Range Query
Range query is a type of task to calculate a value based on a subarray […]
Tech
Posted on:
[Algo] Dynamic Programing
Dynamic programing combines the correctness of complete search and the efficiency of greedy algorithms. There […]
Tech
Posted on:
[Algo] Shortest Paths & Minimum Span Tree
Given a weighted directed graph, how to find the shortest path between two nodes? Bellman-Ford […]
Tech
Posted on:
[Algo] Directed Graph & Strong Connectivity
DAG: Topological Sorting Successor Graph Strong Connectivity Kosaraju algorithm is a O(n) method to find […]