Operation | B-Tree | Hash |
---|---|---|
Lookup single record | O(log(n)) | O(1) |
Lookup range | O(log(n)) | O(n) full table scan |
Insertion | O(log(n) | O(1) |
Deletion | O(log(n) | O(1) |
Last active
December 2, 2021 16:01
-
-
Save 2color/012f038025410eedae996f0ab134f1e2 to your computer and use it in GitHub Desktop.