Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
49 lines
605 B
TeX
49 lines
605 B
TeX
\documentclass{article}
|
|
\usepackage{ifthen}
|
|
\usepackage{epsfig}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{newunicodechar}
|
|
\newunicodechar{⁻}{${}^{-}$}% Superscript minus
|
|
\newunicodechar{²}{${}^{2}$}% Superscript two
|
|
\newunicodechar{³}{${}^{3}$}% Superscript three
|
|
|
|
\pagestyle{empty}
|
|
\begin{document}
|
|
$ O(log(N)) $
|
|
\pagebreak
|
|
|
|
$ O(log(To - From)) $
|
|
\pagebreak
|
|
|
|
$ O(1) $
|
|
\pagebreak
|
|
|
|
$ O(N) $
|
|
\pagebreak
|
|
|
|
$ O(L) $
|
|
\pagebreak
|
|
|
|
$ L $
|
|
\pagebreak
|
|
|
|
$ O(log N) $
|
|
\pagebreak
|
|
|
|
$ O(N \times M) $
|
|
\pagebreak
|
|
|
|
$ N $
|
|
\pagebreak
|
|
|
|
$ M $
|
|
\pagebreak
|
|
|
|
$ O(N^2) $
|
|
\pagebreak
|
|
|
|
$ O(N log N) $
|
|
\pagebreak
|
|
|
|
\end{document}
|