Map [1]
| Operation | Time Complexity |
|---|---|
| Access | O(log n) |
| Search | O(log n) |
| Insertion | O(n) for <= 32 elements, O(log n) for > 32 elements [2] |
| Deletion | O(n) for <= 32 elements, O(log n) for > 32 elements |
| #!/bin/sh | |
| if test -f .merlin; then | |
| echo ".merlin already exists, bailing out ..." >&2 | |
| exit 1 | |
| else | |
| # You could add your default EXT's and such to this list: |