AlgorithmHash TableHash function Hash function: any function that can be used to map data of arbitrary size to fixed…Daniel NguyenApril 26, 2024 1 min
AlgorithmQueue & StackQueue First in first out (FIFO) data structure: first element added will be processed first…Daniel NguyenApril 26, 2024 1 min
AlgorithmMerge And Quick SortMerge Sort If the list is of len 0 or 1 => already sorted, do nothing If the list has > 1 element…Daniel NguyenApril 21, 2024 2 min
AlgorithmTriea data structure to manage a set of strings operations: add(s): add string s to Trie startWith…Daniel NguyenApril 19, 2024 1 min
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