Hi There!

I'm Dan Schlegel, an Associate Professor in the Computer Science Department at SUNY Oswego

CSC241 – Fall 2025

Abstract Data Types and Programming Methodologies

Quick Links: Grading | Daily Schedule | Brightspace | Class Code (GitHub)

Instructor:

Prof. Daniel R. Schlegel, 464 Shineman Center, daniel.schlegel@oswego.edu
Office/Lab hours: Monday/Wednesday 2-4PM. Email any time with questions!
Section 810: MWF 9:10-10:05, Shineman 444

Course Description:

A developing computer scientist must understand and explain how their proposed data structures and algorithmic solutions compare to other solutions in terms of complexity, run time, and resource requirements. This course introduces students to traditional techniques used to describe such solutions. In addition, we will look at classic data structures and their applications in order to expand the depth and breadth of a student’s knowledge.

This course is intended to challenge the student to design and implement software based on specifications prepared by the instructor. Throughout the semester, each student will need to identify appropriate design elements and justify their selections.

Course Objectives:

  • To employ object-oriented design techniques to model problems and solutions.
  • To employ decomposition techniques to break a program into smaller pieces
  • To analyze algorithmic solutions using asymptotic notation
  • To demonstrate effective use of abstract data types (ADTs), e.g., stacks, queues, lists, hash tables, trees, etc., in their designs
  • To demonstrate correct use of recursive algorithms and data structures
  • To articulate the advantages and disadvantages of competing algorithmic solutions

Textbooks:

Recommended: Koffman, E.B. and Wolfgang, P.A.T., Data Structures: Abstraction and Design Using Java, 3e. Wiley, 2015.

Useful Resources:

Introduction to Computer Science Using Java
Data Structures @ Wikibooks
Data Structure Visualizations
Java Tutorials @ Oracle
JDK 21 Documentation @ Oracle
Java on LinkedIn Learning

Attendance and Modality:

As per college policy, attendance in all sessions is obligatory. If you cannot attend a class meeting due to religious, athletic, health related circumstance, or circumstance of particular hardship, please notify me in advance via email. Please be ready to present proof, if necessary. 

We meet in person three times a week. There will be no recording, and I won’t work through the content with you in a one-on-one fashion during office hours or an appointment – basically, if you miss class then you missed out on what you signed up for when registering for the class and you will have to work through the content independently. Of course, I will answer questions about the content, if you have any, and there are exceptions for excused absences due to illness etc.

“Go Remote” Days Due to Weather: In short, we value our snow days and will do what is reasonable to make sure that no commuter is in danger, while also maintaining academic integrity. In long, the concept of a “Go Remote” day due to weather is crap. We deserve our snow days. Yes, snow days are a serious inconvenience and create a content crunch, especially if classes are cancelled indiscriminately. But, snow days are also a weather-gifted day of respite and nearly everyone appreciates an occasional day of rest. We may choose to skip certain topics during the semester so that we can afford to cancel class on a “Go Remote” day. If it turns out that many classes are cancelled due to weather, then we will have to assign independent reading / activities to cover some of the content.

Classroom Etiquette:

A positive learning environment relies upon creating an atmosphere where all students feel welcome. Discussion is meant to allow us to hear a variety of viewpoints. This can only happen if we respect each other and our differences. Hostility and disrespectful behavior is not acceptable.

Cell phones and headphones should not be out or used during lecture, and laptops should only be used for taking notes. If use of any electronics becomes distracting to other students I reserve the right to discontinue the allowance of their use.

Asignments:

All assignments will be completed alone, but working together without writing or sharing code to come up with general solutions is encouraged. The assignments are difficult, and I recommend starting work on them early, avoiding any tendency toward procrastination. You should plan on spending at least 10 hours per week on course work outside of class.

AI Policy:

No AI or large language models should be used during CSC241. These tools are great and you will be using them in later courses, but foundational skills must be learned through reading, experimentation, trial and error, struggle, and hard work. The skills you learn in this course will help you decide if the answers given by AI models are really helpful or not in your later work, so don’t deprive yourself of that!

Grading:

Assignments will be submitted via Brightspace and graded according to the grading criteria. Code which does not compile or immediately crashes will receive no credit. There may be in-class presentations and/or live demos of your work at various points in the semester.

Assignments may be submitted up to five calendar days late with a 5% per day penalty. After five days no credit will be assigned. Outside of this late policy, no late assignments will be accepted. Assignments submitted late will be graded later than those submitted on time.

The total points received on assignments will then summed and divided by the points possible and scaled as appropriate according to the percentages given below.

AssessmentPoints
Assignments (7)500
Midterm Exam200
Final Exam300
Total1000

You may not receive a grade more than one letter grade above min(exams, assignments). That is, if your exam average is D, the best grade you can achieve in the course is a C. Likewise if you receive an E average on your assignments, the highest grade you can expect is a D.

The default grading for the course will be along the university’s standard grading curve:

A: 93-100C+: 77-79
A-: 90-92C: 73-76
B+: 87-89C-: 70-72
B: 83-86D+: 67-69
B-: 80-82D: 60-66
 E: 0-59

A more generous curve may be used, but should not be expected.

Schedule/Outline:

During the semester we aim to cover the following topics:

  • Object Orientation
  • Problem-solving Techniques
  • Recursion
  • Sorting Algorithms
  • Basic Search Algorithms
  • Lambdas and Streams in Java
  • Asymptotic Analysis
  • Data Structures

This syllabus and the course schedule are subject to change by the instructor. All changes and related justifications will be announced in class, and updates will be reflected in this web version.

Selected lecture materials which the instructor deems too cumbersome for note taking will be maintained on Brightspace, but most lecture materials will require fastidious note taking on the part of the student.

WeekDayDateTopicAssignment/Assessment
1Monday8/25First Day of Class
Syllabus & Overview
Project Description
Assignment 1 due 9/2, 11:59PM on Brightspace
Wednesday8/27Object Orientation'
Short Individual Exercise on Method Writing
Friday8/29Class Design
2Monday9/1No Class - Labor Day
Wednesday9/3Interfaces
Friday9/5Interfaces and InheritanceAssignment 2 due 9/19 on Brightspace.
3Monday9/8Inheritance
Enums and Records
Note: OH only 3-4 today.
Wednesday9/10Abstract Classes
Assignment Q&A
Event-Driven Programming Introduced
Friday9/12SAX Parsing
4Monday9/15SAX Parsing GraphML Example, contd.
Wednesday9/17Data Structures Introduction, Expandable Array Planning
Friday9/19Starting to implement Expandable Array
5Monday9/22Continuing to build ExpandableArrayAssignment 3 due 10/3 on Brightspace
Wednesday9/24Continuing to build ExpandableArray
Friday9/26Java ArrayList Implementation
Q&A, Work Day
6Monday9/29Asymptotic Analysis Introduced
Last day of new material for midterm exam
Wednesday10/1More Time Complexity, Some Space Complexity
Midterm Study Guide
Friday10/3Linked List Introduction
7Monday10/6Linked List Implementation Started
Static inner classes
Wednesday10/8Midterm ExamMidterm Exam
Assignment 4 due 10/24 on Brightspace
Friday10/10No Class - Fall Break
8Monday10/13Linked List Implementation Exercises
Wednesday10/15Generic Types
LL Remove
Friday10/17Work Day in Class
9Monday10/20Let's think about sorting...
Visualization
Wednesday10/22More n^2 sorting
Friday10/24Selection Sort
Benchmarking
10Monday10/27Writing Unit Tests
JUnit User Guide
Assignment 5 due 11/7 on Brightspace
Wednesday10/29Lambdas & Streams
Lambdas Tutorial
Friday10/31Design Exercise: Adding Features to Existing Software
11Monday11/3Stacks, Queues, Sets, and Maps!
Wednesday11/5Data Structure Comparison, Benchmarks
Friday11/7Binary Search on Lists
12Monday11/10TreesAssignment 6 due 11/21 on Brightspace
Wednesday11/12BST Implementation
BST Visualization
Friday11/14BST Remove, Practice
13Monday11/17Binary Tree Traversals
Sorting with a BST
Wednesday11/19MergeSort
Friday11/21MergeSort Implementation
14Monday11/24No Class - Thanksgiving Break
Wednesday11/26No Class - Thanksgiving Break
Friday11/28No Class - Thanksgiving Break
15Monday12/1Let's have some fun: Advent of CodeAssignment 7 due Thursday at 5PM on Brightspace!
Wednesday12/3QuickSort
Friday12/5Let's play each other's games!
Final Exam Study Guide
Finals WeekWednesday12/10Final Exam 8-10amFinal Exam 8-10am

Academic Integrity:

SUNY Oswego is committed to Intellectual Integrity. Any form of intellectual dishonesty is a serious concern and therefore prohibited. You can find the full policy online. While it is acceptable to discuss general approaches with your fellow students, the work you turn in must be your own. You may not turn in code found on the internet or generated using AI models. If you have any problems doing the assignments, consult the instructor. See this page on plagiarism for an explanation of what we consider cheating.

All parties involved in minor academic integrity violations will receive a score of zero for that quiz/exam/assignment, and all violations will be reported. Minor violations are those which could feasibly happen accidentally or due to a little carelessness. Major violations will result in failing the course. Repeat violations, including across semesters, will result in failing the course.

SUNY Oswego Basic Needs Syllabus Statement:

SUNY Oswego is dedicated to recognizing the basic needs of every individual on campus by connecting them to resources and services that assist them in meeting their basic needs. If you are in need of food, clothing, academic supplies, emergency housing, addiction services or are unsure of what resources are available to meet your basic needs, please complete the following form to connect to the Office of the Dean of Students: Basic Needs Self-Disclosure Form

For information on mental health services visit the Counseling Services website and for information on health services visit the Health Services website.

If you have any questions or would like to schedule a meeting with one of the Assistant Dean of Students, email deanofstudents@oswego.edu or call 315-312-5483. Visit the Office of the Dean of Students website https://ww1.oswego.edu/dean-students/ for more information.

For other inquiries, visit the Oz Concern Navigator at https://oswego.concerncenter.com.

Accessibility:

If you have a disabling condition which may interfere with your ability to successfully complete this course, please contact Accessibility Resources located at 155 Marano Campus Center, phone 315.312.3358, access@oswego.edu

Clery Act/Title IX Reporting:

SUNY Oswego is committed to enhancing the safety and security of the campus for all its members. In support of this, faculty may be required to report their knowledge of certain crimes or harassment. Reportable incidents include harassment on the basis of sex or gender prohibited by Title IX and crimes covered by the Clery Act. For more information about Title IX protections, go to https://www.oswego.edu/title-ix/ or contact the Title IX Coordinator, 405 Culkin Hall, 315-312-5604, titleix@oswego.edu. For more information about the Clery Act and campus reporting, go to the University Police annual report: https://www.oswego.edu/police/annual-report.