Segment Tree 筆記 Segment-Tree 介紹 主要用來找區間最大值或區間總和。由於我是為了這題所以以區間總和做介紹。下面陣列是應對區間總和,每個 node 紀錄的有起始點, 結束點及區間總和,EXAMPLE: [0,4] 代表 index 0 ~ 4 的總和,其總和為 10,[0,0] 代表 index 0~0 也就是 nums[0] 的本身值。至於樹為什麼長這樣跟 Build tree... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 5 (3) - 常用詞彙 常用詞彙 block Sequence of zero or more statements enclosed in curly braces. A block is a statement, so it can appear anywhere a statement is expected. ... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 5 (2) - Exception Exceptions Exceptions 是程式在 run-time 遇到的異常,比如與資料庫的連結斷開或遇到其他程式異想不到的 input。Exception handling 基本上就是當程式無法解決問題或者無法繼續執行時發出警告,或者更進一步根據情況處理 exception。 Exception handling 由 detecting, handling parts... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 5 (1) - Statement Statement Simple Statements expression 加上 ; 作為結尾視為 statement。 a + 5 // expression a + 5; // statement ; // null statement Compound Statements (Blocks) ... Read More