If I want to write a function (probably also a class) which returns linearly "smoothed" data from an immutable lookup table (fixed when calling constructor) like this:

For example func(5.0) == 0.5.
What is the best way of storing the lookup table?
- I am thinking of using two arrays.
- Could there be other better ways?
What is the best way of calculating the required value? (In terms of real-time efficiency, excluding preparation time)
- I am thinking of pre-sorting the lookup table on
argand using a binary search to find the nearest two points. - Or should I build a binary tree to simplify searching?
- Or could there be other better ways?
- I am thinking of pre-sorting the lookup table on
(Minor) What would one call this kind of function/class/data-structure/algorithms? Is there any formal names for this in Computer Science?
I think I may need to write my own class. The class, at best, should be immutable because there is no need to change it after initialization and probably multiple threads will be using it. I may also need to get keys and values by the index.
func()? You can consider storing pre-calculated values. – Xiao Jia Jan 15 at 1:51