Libraries
Plugins
| File | Language | Description |
|---|---|---|
| HP-UX XMMS Plugin v0.1 | C | An HP-UX output plugin for XMMS. |
Data Structures
| Files | Language | Description |
|---|---|---|
| avl.h avl.c | C | An AVL tree implementation. |
| heap.h heap.c | C | A binary heap implementation. |
| trie.h trie.c | C | A Trie implementation. |
Sorting Algorithms in C
| File | Algorithm | Average Time Complexity |
|---|---|---|
| bubble.c | Bubble Sort | O(n^2) |
| insert.c | Insertion Sort | O(n^2) |
| heap.c | Heap Sort | O(n lg n) |
| merge.c | Merge Sort | O(n lg n) |
| quick.c | Quick Sort | O(n lg n) |
| radix.c | Radix Sort | O(nk) |
| select.c | Selection Sort | O(n^2) |
| shell.c | Shell Sort | O(n^1.5) |