Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
4answers
2k views

Disk-backed STL container classes?

I enjoy developing algorithms using the STL, however, I have this recurring problem where my data sets are too large for the heap. I have been searching for drop-in replacements for STL containers ...
3
votes
2answers
140 views

On-disk structure for storing a large set of 128-bit integers?

I have about 500 million 128-bit integers, adding about 100M per year. Nothing is ever deleted. The numbers come at a uniform distribution, scale-wise and time-wise. Basically, all I need is an add ...
1
vote
1answer
292 views

B+Tree on-disk implementation in Java

Does anyone know where to find a B+Tree on-disk implementation? I went through google forward and backward and unfortunately I couldn't find anything sensible. Other threads have suggested to maybe ...
1
vote
4answers
150 views

Scalable stl set like container for C++

I need to store large number of integers. There can be duplicates in the input stream of integers, I just need to store distinct amongst them. I was using stl set initially but It went OutOfMem when ...
0
votes
4answers
335 views

On Disk Substring index

I have a file (fasta file to be specific) that I would like to index, so that I can quickly locate any substring within the file and then find the location within the original fasta file. This would ...