緣起 又來到了痛苦的鐵人賽發文季,老實說忘記去年為何沒參加了XD不過最近剛好在上線上課程資料結構與演算法 (JavaScript),覺得可以來記錄一下,順便看看...
何謂演算法 what is algorithm a finite sequence for solving mathematical problem or p...
上篇提到 input size 與 complexity 互為因果而我們用f(n)來表示 complexity 與 input size 間的方程式(equat...
common types of time complexity in big O Notation Big O Notation 有幾個常見的值,越上面的值表示...
上篇提到 Big O Notation我們現在知道了 Big O 用來表示演算法的 upper bound / worst case scenario(上界限...
What is Linear Search 什麼是線性搜尋 從 input dataset 最前端開始,遍歷每個值一直到找到目標值,如果沒有找到目標值的話,便逐...
What is Binary Search Binary search is a search method that works only on sorted...
Get The Intersection Of Two Arrays Here's a quick exercise: If there are two uns...
昨天我們寫了用 linear search 取兩array 間 intersection 的練習若兩個 array 長度很長的話,其複雜度會為 O(length...
沒想到這系列已經來到第10天,希望我能堅持到第30天XD今天一樣來做 Coding Practice Find the Average Pair In An A...