Course Syllabus
CompSci 261P: Data Structures
Kevin A. Wortman, Ph. D.
Lecturer, Department of Computer Science
Email: kwortman@uci.edu
Virtual Office: in Zoom, only during office hours or by appointment
TA Name & email address: Aftab Hussain, aftabh@uci.edu
I. Course Description
Data structures and their associated management algorithms, including their applications and analysis.
II. Learning Objectives/Pedagogical goals
Upon successful completion of the course, students should be able to
-
- Select the most appropriate data structure for a software development need, based on the operations that structures support, and the operations' asymptotic efficiency.
- Understand the purpose and implementation of major categories of data structures: stacks, queues, priority queues, dictionaries, and sets.
- Compare the trade-offs of alternative implementations of sets and dictionaries, based upon principled analysis.
- Be familiar with some special-purpose data structures, such as tries and range trees.
- Implement nontrivial data structures and appreciate implementation issues.
III. Course Requirements
Computer and Internet Connection
You will need to have access to a computer with an Internet connection in order to study remotely this quarter. You will need a computer with a built-in webcam (probably a laptop) to take exams, and participate fully in Zoom-based lectures, labs, and office hours. You can also join Zoom meetings (but not take exams) via the zoom app Links to an external site.installed on a mobile device (smartphone or tablet).
Access to the EEE+ Canvas Course site
Students are expected to login to Canvas site every day. It is a student’s responsibility to get familiar with the Canvas features Links to an external site. as the course materials and assignments will be delivered via the EEE+ Canvas system. Please visit the Canvas student support Links to an external site. page to find out how to reach for help. You can also contact the OIT Help Desk at oit@uci.edu or call (949) 824-2222 for assistance.
Update the Canvas Setting and Notification (Required!)
UCI students are given a UCI gmail account Links to an external site., but it may not be accessible in certain countries. Thus, it is very important you update the Canvas settings Links to an external site. and notifications Links to an external site. to ensure you receive the important messages and announcements from your professor. Click on “setting” to add another email address and/or a cell phone number to receive notifications. Click on “notification” to configure how you receive Canvas notifications.
IV. Required Readings and Textbook
You are not required to purchase a textbook. The course material will be drawn from the following open culture (free) texts:
- Fundamental Data Structures Links to an external site., wikipedia.org
- Open Data Structures Links to an external site., Pat Morin
The following are not required, but are recommended to students who feel they would benefit from supplementary explanations of the material.
- Cormen, Leiserson, Rivest, and Stein, Introduction to Algorithms, 3rd Edition, MIT Press, 2009.
- Goodrich and Tamassia, Data Structures and Algorithms in Java, Wiley, 2006.
- Goodrich, Tamassia, and Mount, Data Structures and Algorithms in C++, Wiley, 2011.
- Kleinberg and Tardos, Algorithm Design, Pearson/Addison Wesley, 2006.
V. Assignment Description
Piazza Discussion
Our primary asynchronous communication tool is Piazza. Please ask questions about course content, administrative issues, and other matters via Piazza. Where appropriate, please ask public questions so that other students can benefit from the discussion.
Lectures and Reading Assignments
Each lecture will take place in a synchronous (live) Zoom meeting. As shown in WebSoc, lectures take place:
TuTh 6:30-7:50 pm, Pacific time zone
Ideally, you should attend lectures by joining the Zoom meeting during these times. Lectures will be interactive; you are encouraged to ask questions using the Zoom chat or "raise hand" feature. Lectures will be recorded and posted to Canvas shortly after they take place live. If you are unable to attend a lecture live, you may instead watch the recording. You should do this within 24 hours to keep pace with the class.
Each week has a corresponding reading assignment. You should complete this reading before attending/watching the week's lectures.
Reading assignments will be posted to Canvas approximately one week in advance, and slides will be posted to Canvas approximately one day in advance. Tentative list of topics:
-
-
- Introduction. Abstract data types and data structures. Worst case vs. amortized complexity. The potential method of amortized analysis. Dynamic arrays. Stacks, queues, and deques.
- The dictionary problem and hash tables. Hash chaining, linear probing, and cuckoo hashing. Hash functions: cryptographic hash functions, k-independent hashing, tabulation hashing.
- Representing sets. Bloom filters. Cuckoo filters.
- Priority queues. Binary heaps and k-ary heaps. Fibonacci heaps.
- Binary search trees and predecessor queries. Balanced binary trees: AVL Trees, Red-Black Trees, WAVL trees.
- Alternatives to balanced binary trees: B-trees, Treaps, Skip lists.
- Splay trees, static optimality, competitive analysis, and the dynamic optimality conjecture.
- Tries and suffix trees. Range searching, and augmented binary search trees.
- Time allowing, graph data structures.
-
Labs
Labs will also be synchronous (live) Zoom meeting. As shown in WebSoc, labs take place:
Tu 8-8:50 pm, Pacific time zone
Labs will be led by your TA. They will be a combination of structured reviews of lecture material, and an open forum for help with homework, projects, and exam preparation. Labs may provide opportunities for small amounts of extra credit on homework and projects.
Quizzes
After attending/watching a lecture, you must complete a brief quiz. Quizzes are intended primarily to check that you attended/watched the lecture and absorbed its main ideas. Quizzes will be objective questions (e.g. multiple choice) and administered through Canvas. You must complete quizzes individually (not in groups).
You have a limited time window of approximately 24 hours to complete each quiz. A quiz will become available at the end of a lecture (TuTh 7:50 pm Pacific time) and due at the end of the following day (WeFri 11:59 pm Pacific time).
As an exception, the very first quiz is not linked to a lecture, but instead asks you to confirm that you have read this syllabus. Starting with the second lecture, quiz content and deadlines will be linked to lectures.
Homework
Homework assignments reinforce class material and are practice for the kinds of problems you may be asked to solve on exams, in job interviews, or as a working software developer or researcher. They involve designing data structures, analyzing their operations, and related topics. Homework is completed individually. Each homework will involve 2-5 problems and you are expected to complete all the problems. One randomly-chosen problem in each assignment will be scrutinized and graded for clarity and correctness. The other problems will be graded for effort only. There will be 3 of these homework assignments.
You will be submitting your homework to a system called GradeScope which assists us in grading and giving you feedback. In order to submit your homework, you will need to create a PDF file, submit it to your GradeScope account, and tell gradescope where your solution to each problem can be found.
If you do not already have a GradeScope account, go to gradescope.com
Links to an external site. to create one. Your Gradescope account must use your UCI email and not some other email account.
Once you have created your GradeScope account, add yourself to this course. The course code is 95PGZY.
Instructions on how to upload a PDF to GradeScope can be found in the Files module in Canvas.
After you have uploaded your homework, use the GradeScope interface to indicate on which page(s) your solution to each problem is.
In addition, the very first homework involves setting up all of the software platforms we are using: Canvas, Zoom, Piazza, GradeScope, and Respondus.
Projects
Programming projects are an opportunity for hands-on, practical, applications of data structures. They may involve implementing data structures, analyzing their performance empirically, and utilizing them to solve practical computational problems. Each project will involve both programming and writing a report document.
You must write your project code in C++. We must be able to compile and run your code on an openlab host; openlab is our target platform for grading purposes. Your submission will be graded on the basis of code correctness, code style and design, report content, and report presentation/grammar.
You may work in a group of 1-3 students on projects. It is up to you to form groups; if you prefer, you may work alone instead. If you work in a group, make one submission for the entire group in Canvas.
Each project will involve a tarball (.tar.gz file) containing a directory with starter code. Part of the assignment involves modifying the starter code. You will submit a new version of the tarball, and your report document, to Canvas.
Exams
Exams are written, closed-book, individually-completed, timed, examinations. They will be conducted through Canvas using the same "quiz" interface as Quizzes.
This course requires the use of LockDown Browser for online exams. Watch this short video to get a basic understanding of LockDown Browser Links to an external site. and the optional webcam feature (which may be required for some exams).
Then download and install LockDown Browser from this link:
https://download.respondus.com/lockdown/download.php?id=670114425 Links to an external site.
To take an online test, start LockDown Browser and navigate to the exam. (You won't be able to access the exam with a standard web browser.) For additional details on using LockDown Browser, review the Student Quick Start Guide Links to an external site. (PDF, also in Canvas).
Finally, when taking an online exam, follow these guidelines:
-
- Select a location where you won't be interrupted
- Before starting the test, know how much time is available for it, and that you've allotted sufficient time to complete it
- Turn off all mobile devices, phones, etc. and don't have them within reach
- Clear your area of all external materials — books, papers, other computers, or devices
- Remain at your desk or workstation for the duration of the test
- LockDown Browser will prevent you from accessing other websites or applications; you will be unable to exit the test until all questions are completed and submitted
VI. Grading Methods
5% Homework
5% Quizzes
15% Projects
25% Midterm 1
25% Midterm 2
25% Final Exam
----------------------------------------------------------------------------------------------------
Total: 100% (view UCI Grading System)
VII. Course Policies
Netiquette for Remote Learning
“Netiquette Links to an external site.” is network etiquette, the do's and don'ts of online communication. Netiquette covers both common courtesy online and the informal “rules of the road” of cyberspace. The students are expected to follow the Netiquette Guidelines for Remote Learning. Links to an external site.
Virtual Office Hours
Talk to your professor online in the office hours Zoom meeting during the office hours on TuTh between 1-2 pm Pacific time. Appointments can be made at other times by request.
Communication Expectations
Your professor will respond to emails within 24 hours during the business day. Students can also ask a question on Piazza, so both your professor and other classmates can help answer it.
Class Withdrawal Policy
It is the student's responsibility to officially drop/withdraw from any courses before the deadline posted by the university's registrar’s office. Please refer to UCI’s academic calendar http://www.reg.uci.edu/enrollment/withdrawals/ for the withdrawal policy, procedure, and refunded schedule.
Academic Integrity
UCI is an institution of learning, research, and scholarship that is strengthened by the existence of an environment of integrity. As members of the academic community, students are responsible for maintaining this environment, and subscribe to the practice of academic integrity and accept individual responsibility for their work and actions. Violations of academic integrity are unacceptable and will not be tolerated, because they devalue the teaching and learning experience for the entire community. Observing basic honesty in one’s work, words, ideas, and actions is a principle to which all members of the community are required to subscribe. For more information, please visit https://aisc.uci.edu/students/academic-integrity/index.php
Diversity Statement
The University of California, Irvine, in accordance with applicable Federal and State law and University policy, does not discriminate on the basis of race, color, national origin, religion, sex, gender identity, pregnancy, physical or mental disability, medical condition (cancer-related or genetic characteristics), ancestry, marital status, age, sexual orientation, citizenship, or service in the uniformed services. The University also prohibits sexual harassment. This nondiscrimination policy covers admission, access, and treatment in University programs and activities.
Disability Statement
The University of California, Irvine, is committed to providing a barrier-free environment for learning and an electronic environment that is accessible to everyone, including individuals with disabilities. If you have a disability and feel you need accommodations in this program or a course, please contact the Disability Services Center (DSC). DSC approved accommodations will be provided for students who present a Faculty Notification Letter from the DSC.
Third-Party Tools
Please click here Links to an external site. for information regarding the accessibility statements and the privacy statements.