WEI-CHENG CHEN

Array

Matrix

Hash Table

Sort

DFS

Binary-Tree

Stack

BFS

Linked List

Sliding Window

String

前墜合

Math

判斷回文

羅馬數字互轉

Greddy

Bit Manipulation

Backtracking

// 模板
void backtrack(大集合(最後要返回的), 當前收集的小字串, 進度等等){
        // 終止條件:當遍歷完整個數字字串時,
        if(...){
            return;
        }

        // 取得當前數字對應的字母
        string temp_string = m[digits[index]];
        for(...){
            // 放進去
            // 遞迴
            // 拔出來
        }
    }

DP