new homework; I'll prob gitignore images cause of capacity

master
Chris Nutter 2020-09-14 22:00:39 -07:00
parent f08bb8254d
commit f2b7c8b54d
13 changed files with 98 additions and 0 deletions

BIN
cpsc335/images/big_o-examples.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
cpsc335/images/big_o.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 748 KiB

BIN
cpsc335/images/bruteforce.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
cpsc335/images/bubble-sort.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 857 KiB

BIN
cpsc335/images/dodecahedron.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

BIN
cpsc335/images/gauss-trick.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
cpsc335/images/recursion-algo.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 KiB

BIN
cpsc335/images/search+strings.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

View File

@ -0,0 +1,98 @@
\documentclass[12pt,a4paper]{article}
\usepackage{graphicx}
\usepackage{abstract}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{amssymb}
%\usepackage{indentfirst}
\graphicspath{ {./images/} }
\renewcommand{\abstractname}{\large{Timestamps}}
\setlength{\parindent}{0.5in}
\title{CPSC 335 | Lecture \#3}
\author{Chris Nutter\thanks{Dedicated to @QuesoGrande a.k.a. Jared D.}}
% --> Here we go, satellite radio, y'all get hit with a...
\begin{document}
\maketitle
\begin{abstract}
\noindent
\begin{center}\textbf{09/14/2020 - 07:07:56 PM}\end{center}
Read Ch. 3. It's about 30 pages. Could be important.\\
\begin{center}\textbf{09/14/2020 - 07:44:53 PM}\end{center}
Went to bathroom and lost information.\\
\begin{center}\textbf{09/14/2020 - 07:44:53 PM}\end{center}
Got back and Star said that he finished the problem.\\
\begin{center}\textbf{09/14/2020 - 09:08:49 PM}\end{center}
Read 3.4 \& 3.5. I mean theoretically read all sections cause \textbf{THE STUFF COULD BE ON THE TEST!!!}\\
\end{abstract}
\tableofcontents
% -->
\section{After The Icosian Game}
Directed Graph: Graph with directed edge\\\\
$2^{20} = 1,000,000\\20! = 45,000,000\\$
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{big_o.png}}
\caption{Big(O) Notation}
\end{figure}
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{big_o-examples.png}}
\caption{Big(O) Examples | \textbf{\emph{Important}}}
\end{figure}
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{big_o-running-time.png}}
\caption{Big(O) Running Times}
\end{figure}
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{recursion-algo.png}}
\caption{Recursion Algorithm}
\end{figure}
\section{Chapter 3}
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{bruteforce.png}}
\caption{Bruteforce Algorithm}
\end{figure}
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{gauss-trick.png}}
\caption{Gauss's Trick \& Bubble Sort}
\end{figure}
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{bubble-sort.png}}
\caption{More Bubble Sort}
\end{figure}
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{search+strings.png}}
\caption{Search \& Strings}
\end{figure}
\begin{figure}[!hbtp]
\centering
\fbox{\includegraphics[width=13.8cm]{exhaustive-search.png}}
\caption{Exhaustive Search, \textbf{TSP}: Traveling Salesman Problem}
\end{figure}
\end{document}