What is the best data structure (container) for fast element insertion/deletion by index?
|
1
|
|||
|
|
|
You could get O(log n) performance using a binary tree with a node structure like this:
The This kind of tree probably has a name; more information appreciated! |
||||
|
|
|
Depends on whether or not you're talking about something in memory or on disk. Usually, on disk it is some variant of a B-tree, and usually, in memory, it is generally a linked list (if you know what node you need to insert at). |
||
|
|
|
Try a hash table that dynamically resizes at fixed intervals. Assuming a pretty good uniform distribution, you should have basically constant time [O(1)] access time. http://www.cs.cornell.edu/courses/cs312/2006fa/lectures/lec14.html That link seems to give a good explanation. |
|||
|
