File tree 2 files changed +3
-3
lines changed
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}
70
70
\begin {itemize }
71
71
\item {\bf unordered\_ set}: Store unique keys. Search/Insert/Delete in $ O(1 )$ , no order.
72
72
\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 )$ .
75
75
\end {itemize }
76
76
\end {block }
77
77
\end {frame }
@@ -134,6 +134,6 @@ \subsection{Sets and Maps}
134
134
\url {https://github.com/stevenhalim/cpbook-code/blob/master/ch2/nonlineards/map_set.cpp}
135
135
\end {block }
136
136
137
- Visualization of Data Structures:
137
+ Visualization of Data Structures:
138
138
\url {https://visualgo.net/}
139
139
\end {frame }
You can’t perform that action at this time.
0 commit comments