Skip to content

Commit ec6c40c

Browse files
committed
Fixed a serious typo in lecture 2
1 parent d5d539c commit ec6c40c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Week02/20_NonLinearDS.tex

+3-3
Original file line numberDiff line numberDiff 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}

Week02/week02.pdf

15 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)