[IR] Text Compression 概念與 Random Access


思考 Text Compression
Our focus are compression methods that
1. allow random access to text
2. do not require decoding the entire text

請問記憶體Random Access Memory (RAM) 為何要用random access機制?
依照index隨便跳到一個地方存取
不用從頭找到尾
隨時可以存取任何一個為這的資料
因為它
隨時存取任何一個位置的資料所花的時間是一樣的!!!!!

以演算法的觀點來分析 Random Access與Sequential Access
Sequential: O(n)
Random: O(1)
硬碟存取資料是接近 O(1)

留言

這個網誌中的熱門文章

[筆記] CRLF跟LF之區別 --- 隱形的 bug

[ML筆記] Batch Normalization

[筆記] 統計實習(1) SAS 基礎用法 (匯入資料並另存SAS新檔,SUBSTR,計算總和與平均,BMI)

[ML筆記] Ensemble - Bagging, Boosting & Stacking