I read that Vectors are not seqs, but Lists are. I'm not sure what the rationale is for using one over the other. It seems that vectors are used the most, but is there a reason for that? Any answers are appreciated, thanks!
|
feedback
|
|
If you've done Java programming a lot, and are familiar with the Java collection framework, think of lists like For further clarification: if you intend to add items individually to the front or the back of the sequence a lot, a linked list is much better than a vector, because the items don't need to be shuffled around each time. However, if you want to get at specific elements (not near the front or back of the list) frequently (i.e., random access), you will want to use vector. By the way, vectors can easily be turned into seqs.
| |||||||||||
feedback
|
|
Once again, it seems I've answered my own question by getting impatient and asking it in #clojure on Freenode. Good thing answering your own questions is encouraged on Stackoverflow.com :D I had a quick discussion with Rich Hickey, and here is the gist of it.
| |||||
feedback
|
|
Vectors have O(1) random access times, but they have to be preallocated. Lists can be dynamically extended, but accessing a random element is O(n). | |||||||||
feedback
|
|
just a quick side note: "I read that Vectors are not seqs, but Lists are." sequences are more generic than either lists or vectors (or maps or sets).
| ||||
feedback
|
|
When to use a vector:
When to use a list:
| |||
|
feedback
|