|
4 |
edited tags
|
||
|
3 | deleted 371 characters in body | ||
|
Suppose I load a What's the best data structure (in javaTreeSet with all ) for the task of loading 51 million primes under 1000000000 and then iterating over them? I later want need to print parts of themknow, like for example, the ones primes that are greater than 130000 between 1000000000 and less than 1555555. I know that TreeSet guarantees a computational complexity of O(log n) for the basic operations (add, remove, contains). I find this complexity for the contains method to be attractive, but O(log n) for adding the elements would be overly costly. I don't know if using an array or a hashmap would be more convenient. I don't have experience working with hashing so a java sample would be greatly appreciatedsame number minus 100000. |
||||
|
2 |
edited title
|
||
Iterating over a data structure with a 51 million primes quickly. |
||||
|
1 |
|
||
