Skip to main content
Unit of study_

COMP9123: Data Structures and Algorithms

Semester 1, 2020 [Normal day] - Camperdown/Darlington, Sydney

This unit will teach some powerful ideas that are central to solving algorithmic problems in ways that are more efficient than naive approaches. In particular, students will learn how data collections can support efficient access, for example, how a dictionary or map can allow key-based lookup that does not slow down linearly as the collection grows in size. The data structures covered in this unit include lists, stacks, queues, priority queues, search trees, hash tables, and graphs. Students will also learn efficient techniques for classic tasks such as sorting a collection. The concept of asymptotic notation will be introduced, and used to describe the costs of various data access operations and algorithms.

Unit details and rules

Unit code COMP9123
Academic unit Computer Science
Credit points 6
Prohibitions
? 
INFO1105 OR INFO1905 OR COMP2123 OR COMP2823
Prerequisites
? 
None
Corequisites
? 
None
Assumed knowledge
? 

None

Available to study abroad and exchange students

Yes

Teaching staff

Coordinator Andre van Renssen, andre.vanrenssen@sydney.edu.au
Type Description Weight Due Length
Final exam Final exam
n/a
60% Formal exam period 2 hours
Outcomes assessed: LO1 LO3 LO4 LO5 LO6 LO7 LO8
Tutorial quiz Quizzes
10% Multiple weeks n/a
Outcomes assessed: LO4 LO8 LO7 LO6 LO5
Assignment Assignments
30% Multiple weeks n/a
Outcomes assessed: LO1 LO2 LO3 LO4 LO5 LO6 LO7 LO8

Assessment summary

  • Assignments: Short bi-weekly assignment alternating between paper based and programming. 
  • Quizzes: Short weekly multiple-choice quizzes on e-learning. 
  • Final exam: Final written examination.

Detailed information for each assessment can be found on Canvas.

Assessment criteria

The University awards common result grades, set out in the Coursework Policy 2014 (Schedule 1).

As a general guide, a high distinction indicates work of an exceptional standard, a distinction a very high standard, a credit a good standard, and a pass an acceptable standard.

Result name

Mark range

Description

High distinction

85 - 100

 

Distinction

75 - 84

 

Credit

65 - 74

 

Pass

50 - 64

 

Fail

0 - 49

When you don’t meet the learning outcomes of the unit to a satisfactory standard.

For more information see sydney.edu.au/students/guide-to-grades.

For more information see guide to grades.

Late submission

In accordance with University policy, these penalties apply when written work is submitted after 11:59pm on the due date:

  • Deduction of 5% of the maximum mark for each calendar day after the due date.
  • After ten calendar days late, a mark of zero will be awarded.

This unit has an exception to the standard University policy or supplementary information has been provided by the unit coordinator. This information is displayed below:

These penalties apply when written work is submitted after 11:59pm on the due date. Deduction of 20% of the maximum mark for each calendar day after the due date.

Academic integrity

The Current Student website  provides information on academic integrity and the resources available to all students. The University expects students and staff to act ethically and honestly and will treat all allegations of academic integrity breaches seriously.  

We use similarity detection software to detect potential instances of plagiarism or other forms of academic integrity breach. If such matches indicate evidence of plagiarism or other forms of academic integrity breaches, your teacher is required to report your work for further investigation.

You may only use artificial intelligence and writing assistance tools in assessment tasks if you are permitted to by your unit coordinator, and if you do use them, you must also acknowledge this in your work, either in a footnote or an acknowledgement section.

Studiosity is permitted for postgraduate units unless otherwise indicated by the unit coordinator. The use of this service must be acknowledged in your submission.

Simple extensions

If you encounter a problem submitting your work on time, you may be able to apply for an extension of five calendar days through a simple extension.  The application process will be different depending on the type of assessment and extensions cannot be granted for some assessment types like exams.

Special consideration

If exceptional circumstances mean you can’t complete an assessment, you need consideration for a longer period of time, or if you have essential commitments which impact your performance in an assessment, you may be eligible for special consideration or special arrangements.

Special consideration applications will not be affected by a simple extension application.

Using AI responsibly

Co-created with students, AI in Education includes lots of helpful examples of how students use generative AI tools to support their learning. It explains how generative AI works, the different tools available and how to use them responsibly and productively.

WK Topic Learning activity Learning outcomes
Week 01 1. Administrivia; 2. Definitions and precision regarding scalability and analysis of algorithms Lecture and tutorial (4 hr) LO1 LO5 LO8
Week 02 1. Stacks and queues; 2. Abstract data structures Lecture and tutorial (4 hr) LO5 LO6 LO8
Week 03 1. Recursion on a tree; 2. Tree concepts and definitions Lecture and tutorial (4 hr) LO3 LO5 LO6 LO7 LO8
Week 04 1. Balanced binary search tree (AVL tree); 2. Binary search trees Lecture and tutorial (4 hr) LO3 LO5 LO6 LO7 LO8
Week 05 1. Simple map implementation by list (sorted and unsorted); 2. Priority queues; heap-as-a-tree; sorting using priority queue Lecture and tutorial (4 hr) LO5 LO6 LO7 LO8
Week 06 Hashing Lecture and tutorial (4 hr) LO5 LO6 LO8
Week 07 1. Graph representations; 2. Graph traversals Lecture and tutorial (4 hr) LO3 LO5 LO7 LO8
Week 08 1. Minimum weight spanning tree algorithms; 2. Shortest path algorithm Lecture and tutorial (4 hr) LO5 LO7 LO8
Week 09 Greedy method Lecture and tutorial (4 hr) LO2 LO4 LO5 LO8
Week 10 Divide-and-conquer Lecture and tutorial (4 hr) LO2 LO4 LO5 LO8
Week 11 Divide-and-conquer Lecture and tutorial (4 hr) LO2 LO4 LO5 LO8
Week 12 Randomized algorithms Lecture and tutorial (4 hr) LO2 LO4 LO5 LO8
Week 13 Review of Unit of Study and exam preparation Lecture and tutorial (4 hr) LO1 LO2 LO3 LO4 LO5 LO6 LO7 LO8

Study commitment

Typically, there is a minimum expectation of 1.5-2 hours of student effort per week per credit point for units of study offered over a full semester. For a 6 credit point unit, this equates to roughly 120-150 hours of student effort in total.

Learning outcomes are what students know, understand and are able to do on completion of a unit of study. They are aligned with the University's graduate qualities and are assessed as part of the curriculum.

At the completion of this unit, you should be able to:

  • LO1. demonstrate proficiency in organising, presenting and discussing professional ideas and issues in oral, written and graphic formats. Thorough descriptive reporting. With thorough consideration of format and audience requirements. Fluent presentation of engineering/IT concepts and issues to professional and non-professional audiences, using a varied range of professional communication tools and formats
  • LO2. design an algorithmic solution to a problem, coding it, analysing its complexity, and evaluating its suitability to a context
  • LO3. write code that recursively performs an operation on a data structure
  • LO4. apply basic algorithmic techniques (e.g. divide-and-conquer, greedy) to given design tasks
  • LO5. use notation of big-Oh to represent asymptotic growth of cost functions
  • LO6. understand commonly used data structures, including lists, stacks, queues, priority queues, search trees, hash tables, and graphs. This covers the way information is represented in each structure, algorithms for manipulating the structure, and analysis of asymptotic complexity of the operations
  • LO7. understand basic algorithms related to data structures, such as algorithms for sorting, tree traversals, and graph traversals
  • LO8. use mathematical methods to evaluate the performance of an algorithm.

Graduate qualities

The graduate qualities are the qualities and skills that all University of Sydney graduates must demonstrate on successful completion of an award course. As a future Sydney graduate, the set of qualities have been designed to equip you for the contemporary world.

GQ1 Depth of disciplinary expertise

Deep disciplinary expertise is the ability to integrate and rigorously apply knowledge, understanding and skills of a recognised discipline defined by scholarly activity, as well as familiarity with evolving practice of the discipline.

GQ2 Critical thinking and problem solving

Critical thinking and problem solving are the questioning of ideas, evidence and assumptions in order to propose and evaluate hypotheses or alternative arguments before formulating a conclusion or a solution to an identified problem.

GQ3 Oral and written communication

Effective communication, in both oral and written form, is the clear exchange of meaning in a manner that is appropriate to audience and context.

GQ4 Information and digital literacy

Information and digital literacy is the ability to locate, interpret, evaluate, manage, adapt, integrate, create and convey information using appropriate resources, tools and strategies.

GQ5 Inventiveness

Generating novel ideas and solutions.

GQ6 Cultural competence

Cultural Competence is the ability to actively, ethically, respectfully, and successfully engage across and between cultures. In the Australian context, this includes and celebrates Aboriginal and Torres Strait Islander cultures, knowledge systems, and a mature understanding of contemporary issues.

GQ7 Interdisciplinary effectiveness

Interdisciplinary effectiveness is the integration and synthesis of multiple viewpoints and practices, working effectively across disciplinary boundaries.

GQ8 Integrated professional, ethical, and personal identity

An integrated professional, ethical and personal identity is understanding the interaction between one’s personal and professional selves in an ethical context.

GQ9 Influence

Engaging others in a process, idea or vision.

Outcome map

Learning outcomes Graduate qualities
GQ1 GQ2 GQ3 GQ4 GQ5 GQ6 GQ7 GQ8 GQ9

This section outlines changes made to this unit following staff and student reviews.

- added extra material on proof techniques needed for the class - expanded tutorial sheets - consolidated assignments into few tasks

Disclaimer

The University reserves the right to amend units of study or no longer offer certain units, including where there are low enrolment numbers.

To help you understand common terms that we use at the University, we offer an online glossary.