Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What Qt container class to use for a sorted list?

Tags:

list

qt

Part of my application involves rendering audio waveforms. The user will be able to zoom in/out of the waveform. Starting at fully zoomed-out, I only want to sample the audio at the necessary internals to draw the waveform at the given resolution. Then, when they zoom in, asynchronously resample the "missing points" and provide a clearer waveform. (Think Google Maps.) I'm not sure the best data structure to use in Qt world. Ideally, I would like to store data samples sorted by time, but with the ability to fill-in points as needed.

So, for example, the data points might initially look like:

data[0 ms] = 10
data[10 ms] = 32
data[20 ms] = 21
...

But when they zoom in, I would get more points as necessary, perhaps:

data[0 ms] = 10
data[2 ms] = 11
data[4 ms] = 18
data[6 ms] = 30
data[10 ms] = 32
data[20 ms] = 21
...

Note that the values in brackets are lookup values (milliseconds), not array indices.

I should be able to efficiently query for a range ("all points between 10 and 30 milliseconds") and somewhat-efficiently insert new points.

In .Net I might have used a SortedList<int, int>. What would be the best class to use in Qt? Or should I use a STL container?

like image 728
Dave Mateer Avatar asked Apr 12 '10 15:04

Dave Mateer


1 Answers

QMap is automatically sorted, so iterating over it will produce a sorted (ascending) list.

It also provides Qmap::upperBound() and QMap::lowerBound() which you can use for your range finding functionality.

http://doc.qt.io/qt-5/qmap.html

like image 60
Brian Roach Avatar answered Oct 14 '22 19:10

Brian Roach