Lecture 5 - Data Structures

Linked Lists

Example structure for a node

typedef struct node { int number; struct node *next; } node;

Stacks and Queues

Trees

Dictionaries

Hashing a Hash Tables

Tries