AlgorithmSystem Design GuidelineStep 1: Requirement clarification Purpose: to solve the RIGHT problem! Functional requirements What…Daniel NguyenApril 18, 2024 2 min
AlgorithmLinked ListIntroduction A series of nodes. each node contains 2 parts: information, a reference to the next…Daniel NguyenApril 17, 2024 1 min
AlgorithmMinimum Spanning TreeSpanning Tree Given an undirected, weighted graph G(V, E) A spanning tree is a set of edges: no…Daniel NguyenApril 17, 2024 1 min
AlgorithmSystem DesignMain concerns Reliability The system should continue to work correctly even in the face of adversity…Daniel NguyenApril 17, 2024 5 min
AlgorithmDatabaseDatabase is just a bunch of files on disk. Storage Manager is the one that maintains the database…Daniel NguyenApril 14, 2024 6 min
AlgorithmDijkstra & Union FindDijkstra Shortest path in an unweighted graph: BFS Problem: given a weighted graph of non-negative…Daniel NguyenApril 13, 2024 1 min
AlgorithmOperating SystemThread - Process 1. Process a process is a program in execution. a program is not a process, a…Daniel NguyenApril 13, 2024 4 min
AlgorithmChange Data CaptureChange Data Capture (CDC) is a technique used in databases to capture and track changes made to…Daniel NguyenApril 12, 2024 1 min
AlgorithmSecurityHash vs Encrypt vs Encode Hashing converting a given key into another smaller and fixed-size value…Daniel NguyenApril 12, 2024 4 min
AlgorithmArrayMutator Methods. push() - 0(1) Add a new element to the end of the array. pop() - 0(1) Delete the…Daniel NguyenApril 10, 2024 1 min