AuD
Lecture 'Algorithmen und Datenstrukturen' (code examples)
Package List
Here are the packages with brief descriptions (if available):
[detail level 12345]
 NaudAuD lecture: Data structures, algorithms, examples
 NadtAbstract data types
 NexampleExamples and demos
 NgraphGraph data structures and algorithms
 NtestUnit tests based on JUnit 4
 NutilUtilities (not related to AuD lecture)
 CA234Tree< Key extends ComparableSimple implementation of 2-3-4-trees based on KTreeNode
 CAVLTree< Key extends ComparableSimple implementation of an AVL tree
 CBinarySearchTree< Key extends ComparableBase class for a binary search tree
 CBinaryTreeSimple binary tree
 CBinaryTreeTraversalProvide traversals of binary trees
 CBTree< Key extends ComparableSimple implementation of B-trees based on KTreeNode
 CDListImplementation of a doubly linked list
 CHashMapImplementation of an unordered map based on a hash table
 CKTreeNode< Key extends ComparableNode in a k-ary search tree
 CPriorityQueuePriority queue based on binary min-heap
 CQueueImplementation of AbstractQueue as a (dynamically resized) circular buffer based on array
 CQueueDLImpementation of AbstractQueue based on doubly linked list DList
 CRedBlackTree< Key extends ComparableSimple implementation of a red-black tree
 CSListImplementation of a singly linked list
 CStackImplementation of a stack based on aud.Vector
 CVectorImplementation of an array-based vector