CSIS 310 Data Structures


Course Description

An introduction to the concepts of information organization and manipulation. The course covers basic sequential structures such as array-backed lists, singly- and doubly-linked lists, stacks, and queues, and moves on to more complex data structures such as trees, graphs, priority queues, and dictionaries. Programming projects are completed in one or more high-level languages.


Instructor

Brian R. Snider
Office hours: Wood-Mar 223 (see schedule)


Texts

required
recommended


Resources


Objectives

Students will:


Course Organization

This course will be programming intensive. Though many data structures are now provided by libraries or programming languages themselves, we will implement many of these structures in this course to gain programming experience and an understanding of basic programming principles. The data structures studied here form the fundamental building blocks used in developing complex programs.

I will, in fact, claim that the difference between a bad programmer and a good one is whether he considers his code or his data structures more important. Bad programmers worry about the code. Good programmers worry about data structures and their relationships.

Programming assignments will be carried out in a prescribed high-level language. Instruction in the use of this language will be provided, but the focus of this course will not be on a particular programming language, but on language-independent data structures. You are assumed to have previous experience with one or more high-level languages and will be expected to independently acquire the language skills necessary for this course with a minimum level of instruction.

The course will include regular homework and/or programming assignments. There will be no credit given for late assignments (without an excused absence)—turn in as much as you can. Unless otherwise specified, no handwritten work will be accepted.

Reading should be completed before the lecture covering the material per the provided schedule. Not all reading material will be covered in the lectures, but you will be responsible for the material on homework and exams. Quizzes over the assigned reading may be given at any time.


Collaboration and Academic Integrity

See the GFU CS/IS/Cyber policies for collaboration and discussion of collaboration and academic integrity. See also the university's policy on the use of generative AI and related tools in an academic setting. Most students would be surprised at how easy it is to detect collaboration or other academic integrity violations such as plagiarism in programming—please do not test us! Remember: you always have willing and legal collaborators in the faculty. We encourage you to ask questions in class, ask for help in the CS lab, use the class mailing list, and visit office hours for assistance.

Unless otherwise specified (e.g., for a group assignment or project), you are expected to do your own work. This also applies to the use of online resources (e.g., solution guides), help forums (e.g., StackOverflow), and generative models (e.g., ChatGPT). Put simply: if you are representing someone (or something) else's work as your own, you are being dishonest. Any suspected incidents of academic integrity violations will be investigated and reported to the Academic Affairs Office as they arise.

Almost all of life is filled with collaboration (i.e., people working together). Yet in our academic system, we artificially limit collaboration. These limits are designed to force you to learn fundamental principles and build specific skills. It is very artificial, and you'll find that collaboration is a valuable skill in the working world. While some of you may be tempted to collaborate too much, others will collaborate too little. When appropriate, it's a good idea to make use of others—the purpose here is to learn. Be sure to make the most of this opportunity but do it earnestly and with integrity.


University Resources

Accessibility and Disability

If you have specific physical, psychiatric, or learning disabilities and require accommodations, please contact Disability & Accessibility Services (DAS) as early as possible so that your learning needs can be appropriately met. For more information, go to georgefox.edu/das or contact das@georgefox.edu.

My desire as a professor is for this course to be welcoming to, accessible to, and usable by everyone, including students who are English-language learners, have a variety of learning styles, have disabilities, or are new to online learning systems. Be sure to let me know immediately if you encounter a required element or resource in the course that is not accessible to you. Also, let me know of changes I can make to the course so that it is more welcoming to, accessible to, or usable by students who take this course in the future.

Academic Resource Center

The Academic Resource Center (ARC) on the Newberg campus provides all undergraduate students with free writing consultation, academic coaching, and learning strategy review (e.g., techniques to improve reading, note-taking, study, time management). The ARC offers in-person appointments; if necessary, Zoom appointments can be arranged by request. The ARC, located on the first floor of the Murdock Library, is open during the academic year from 1:00–9:00 p.m., Monday through Thursday, and 12:00–4:00 p.m. on Friday. To schedule an appointment, click on the TracCloud icon on the Canvas dashboard, go to traccloud.georgefox.edu, call 503-554-2327, email the_arc@georgefox.edu, or stop by the ARC. Visit arc.georgefox.edu for information about ARC Consultants' areas of study, instructions for scheduling an appointment, learning tips, and a list of other tutoring options on campus.

Student Support Network

George Fox University uses a robust referral and support system, Fox360, to learn about students who are experiencing various student success concerns. Students who are referred by a professor, other employee, or fellow student will be contacted by a member of our Student Support Network to explore the student's situation, develop a plan, and connect with relevant campus resources. GFU community members who have a concern about a student's well-being can submit an alert by going to fox360.georgefox.edu. Our goal is to provide 360° care for students as they navigate their college experience. For more information see ssn.georgefox.edu or contact Rick Muthiah, Director of Learning Support Services.


Health and Safety Considerations

Please review the entirety of the university's official COVID-19 web page for the most up-to-date community guidance.


Grading

Grading Scale

The final course grade will be based on:

Graded course activities will be posted to Canvas. Take care to read the specifications carefully and proceed as directed. Failure to pay attention to detail will often result in few to zero points being awarded on a given activity.

Grades will be updated as often as possible; you are encouraged to use the "What-If" functionality to calculate your total grade by entering hypothetical scores for various items.

Note that some graded activities in this course will be submitted via GitLab.


Tentative Schedule

Week 1 · Mon

Introduction

Week 1 · Wed

Expectations

MiscExamples

Week 1 · Fri

Abstraction & Encapsulation

Reading: Ch. 1

Week 2 · Mon

Art of Programming

Week 2 · Wed

Java Programming

Reading: Appx. B

Week 2 · Fri

Java Review: Classes & Instances

Reading: Ch. 1

Week 3 · Mon

Java Review: Inheritance; Generics; Javadoc

Reading: Ch. 4
MiscJavadoc

Week 3 · Wed

Serve Dayno classes

Week 3 · Fri

Robust Programming: Assertions & Exceptions

Reading: Ch. 2
MiscExceptions

Week 4 · Mon

Robust Programming: Unit Testing

MiscJUnit

Week 4 · Wed

Arrays

Week 4 · Fri

ArrayList & Vector

Reading: Ch. 3.1–3.5

Week 5 · Mon

Introduction to Algorithm Analysis

Reading: Ch. 5.1–5.2

Week 5 · Wed

Complexity Categories & Big-Oh Notation

Reading: Ch. 5.3

Week 5 · Fri

Amortized Analysis

Week 6 · Mon

Midterm exam review

Week 6 · Wed, 10/1

Midterm exam

Reading: Ch. 1–5

Week 6 · Fri

Midterm exam post mortem

Week 7 · Mon

Abstraction & Interfaces

Reading: Ch. 7
MiscCollections

Week 7 · Wed

Iteration

Reading: Ch. 8.1–8.2

Week 7 · Fri

Mid-semester break—no classes

Week 8 · Mon

Abstract List

Reading: Ch. 9.1–9.3

Week 8 · Wed

List: Implementations

Reading: Ch. 9.4–9.7

Week 8 · Fri

List: Analysis

Reading: Ch. 9.8–9.9

Week 9 · Mon

Searching

Reading: Ch. 11.1–11.2

Week 9 · Wed

Sorting: Insertion, Selection, Merge Sort

Reading: Ch. 6.1–6.4

Week 9 · Fri

Sorting: Quick Sort

Reading: Ch. 6.5, 6.7

Week 10 · Mon

Stack

Reading: Ch. 10.1

Week 10 · Wed

Queue

Reading: Ch. 10.2

Week 10 · Fri

Deque

Reading: Ch. 10.4

Week 11 · Mon

Midterm exam review

Week 11 · Wed, 11/5

Midterm exam

Reading: Ch. 6–11

Week 11 · Fri

Midterm exam post mortem

Week 12 · Mon

Abstract Tree

Reading: Ch. 12.1

Week 12 · Wed

Binary Tree

Reading: Ch. 12.4, 12.7

Week 12 · Fri

Binary Tree: Traversals

Reading: Ch. 12.6

Week 13 · Mon

Priority Queue; Heap

Reading: Ch. 13.1, 13.3

Week 13 · Wed

Binary Min-Heap

Reading: Ch. 13.4

Week 13 · Fri

Heap: Analysis

Reading: Ch. 13.4

Week 14 · Mon

Map & Optimal Search

Reading: Ch. 15.1–15.3

Week 14 · Wed

Hashing

Reading: Ch. 15.4–15.7

Week 14 · Fri

Thanksgiving break—no classes

Week 15 · Mon

Abstract Graph

Reading: Ch. 16.1

Week 15 · Wed

Directed Graph: Implementations

Reading: Ch. 16.2–16.4

Week 15 · Fri

Directed Graph: Analysis

Reading: Ch. 16.2–16.4

Week 16 · TBD

Final exam

Reading: Ch. 12–16


This page was last modified on 2025-09-22 at 08:30:41.

Copyright © 2015–2025 George Fox University. All rights reserved.