File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ \subsection{Sets and Maps}
7070 \begin {itemize }
7171 \item {\bf unordered\_ set}: Store unique keys. Search/Insert/Delete in $ O(1 )$ , no order.
7272 \item {\bf unordered\_ map}: Store key/data, Search/Insert/Delete in $ O(1 )$ , no order.
73- \item {\bf set}: Store unique keys. Search/Insert/Delete in $ O(1 )$ .
74- \item {\bf map}: Store key/data, Search/Insert/Delete in $ O(1 )$ .
73+ \item {\bf set}: Store unique keys. Search/Insert/Delete in $ O(\log n )$ .
74+ \item {\bf map}: Store key/data, Search/Insert/Delete in $ O(\log n )$ .
7575 \end {itemize }
7676 \end {block }
7777\end {frame }
@@ -134,6 +134,6 @@ \subsection{Sets and Maps}
134134\url {https://github.com/stevenhalim/cpbook-code/blob/master/ch2/nonlineards/map_set.cpp}
135135\end {block }
136136
137- Visualization of Data Structures:
137+ Visualization of Data Structures:
138138\url {https://visualgo.net/}
139139\end {frame }
You can’t perform that action at this time.
0 commit comments