這邊整理一下在 LaTex 裏面如果要使用到 Big-O notation 的話要怎麼使用。
1 |
$\mathcal{O}(1)$ |
[latex]$\mathcal{O}(1)$[/latex]
1 |
$\mathcal{O}(\log{} n)$ |
[latex]$\mathcal{O}(\log{} n)$[/latex]
1 |
$\mathcal{O}(n)$ |
[latex]$\mathcal{O}(n)$[/latex]
1 |
$\mathcal{O}(n \log{} n)$ |
[latex]$\mathcal{O}(n\log{}n)$[/latex]
1 |
$\mathcal{O}(n ^ 2)$ |
[latex]$\mathcal{O}(n^2)$[/latex]
1 |
$\mathcal{O}(2 ^ n)$ |
[latex]$\mathcal{O}(2^n)$[/latex]
1 |
$\mathcal{O}(n!)$ |
[latex]$\mathcal{O}(n!)$[/latex]
Leave a Reply