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
JavascriptATM Machine Withdraw RequestImplement a program for an ATM machine to calculate the number of different types of monetary notes…Daniel NguyenApril 13, 2024 1 min
JavascriptImplement this BinaryTreeGiven the BinaryTree class with below structure. Each Node will have a left Node, a right Node and…Daniel NguyenApril 13, 2024 1 min
JavascriptList out the words that have a maximum numberImplement a method that will list out the words that have a maximum number of occurrence in a…Daniel NguyenApril 13, 2024 1 min
JavascriptMerge SortSorting is one of the most fundamental tasks in computer science, and among the many sorting…Daniel NguyenApril 13, 2024 1 min