From ac3276e88f4fccd3ed584285049149a449b5b50d Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Wed, 8 Jan 2025 13:50:24 -0400 Subject: [PATCH] 2025-01-08 13:50:24 --- .obsidian/workspace.json | 14 ++++++++++---- UNB/Year 5/Semester 2/CS3383/Lecture Notes.md | 6 ++++++ 2 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 UNB/Year 5/Semester 2/CS3383/Lecture Notes.md diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index d94705d..963f2a0 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -11,10 +11,14 @@ "id": "a4868a0d0ec2cb3a", "type": "leaf", "state": { - "type": "empty", - "state": {}, + "type": "markdown", + "state": { + "file": "UNB/Year 5/Semester 2/CS3383/Lecture Notes.md", + "mode": "source", + "source": false + }, "icon": "lucide-file", - "title": "New tab" + "title": "Lecture Notes" } } ] @@ -161,8 +165,10 @@ "obsidian-git:Open Git source control": false } }, - "active": "46a6eee907728856", + "active": "a4868a0d0ec2cb3a", "lastOpenFiles": [ + "UNB/Year 5/Semester 2/CS3383/Lecture Notes.md", + "UNB/Year 5/Semester 2/CS3383", "UNB/Year 5/Semester 2", "UNB/Year 5/Semester 1/CS3113/Exam Review.md", "UNB/Year 5/Semester 1/HIST1001/Exam Stuff.md", diff --git a/UNB/Year 5/Semester 2/CS3383/Lecture Notes.md b/UNB/Year 5/Semester 2/CS3383/Lecture Notes.md new file mode 100644 index 0000000..0ffdcf7 --- /dev/null +++ b/UNB/Year 5/Semester 2/CS3383/Lecture Notes.md @@ -0,0 +1,6 @@ +### Running Time +Most Algorithms transform input objects into output objects. The running time typically grows with the input size. Average case time is often difficult to determine. We focus on the worst case running time, as it's easier to analyze and its crucial to applications such as games, finance, and robotics. +### Space Complexity +In algorithms, you need to think about the amount of space, memory, that you need to compute the algorithm. +### Algorithm Structure? +Need to think about how complex an algorithm is in implementation, the simpler the better. Code organization is also important in the structure. \ No newline at end of file